Skip to content

Commit

Permalink
fix(v1.0): fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
cuisongliu committed Mar 26, 2021
1 parent 0e66334 commit 2551a09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
run: go env -w GOOS=linux && go env -w GOARCH=amd64 && go env -w GOPROXY=https://goproxy.io && go build -o sshcmd -v && chmod a+x sshcmd

- name: Build Arm
run: go env -w GOOS=linux && go env -w GOARCH=arm64 && go env -w GOPROXY=https://goproxy.io && go build -o sshcmd-arm -v && chmod a+x sshcmd
run: go env -w GOOS=linux && go env -w GOARCH=arm64 && go env -w GOPROXY=https://goproxy.io && go build -o sshcmd-arm64 -v && chmod a+x sshcmd

- uses: ncipollo/release-action@v1
with:
artifacts: "sshcmd,sshcmd-arm"
artifacts: "sshcmd,sshcmd-arm64"
bodyFile: "README.md"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2551a09

Please sign in to comment.