Skip to content

Commit

Permalink
fix github action
Browse files Browse the repository at this point in the history
  • Loading branch information
licong committed Apr 15, 2022
1 parent 028c8e0 commit a0d641e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ jobs:
stable: 'true'
go-version: '^1.16.1'
- name: build
run: go get github.com/mitchellh/gox && mkdir dist && perl build.pl && ls -al dist/
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go install github.com/mitchellh/gox@latest
mkdir dist
perl build.pl
ls -al dist/
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
Expand Down

0 comments on commit a0d641e

Please sign in to comment.