File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,13 @@ jobs:
2020 - name : build
2121 env :
2222 RELEASE_VERSION : ${{ github.ref_name }}
23- run : ./scripts/binary.sh darwin && ./scripts/binary.sh windows && ./scripts/binary.sh linux
23+ run : ./scripts/binary.sh darwin && ./scripts/binary.sh darwin-m1 && ./scripts/binary.sh windows && ./scripts/binary.sh linux
2424 - name : update
2525 uses : softprops/action-gh-release@v1
2626 if : startsWith(github.ref, 'refs/tags/')
2727 with :
2828 files : |
2929 dist/docker-debug-darwin-amd64
30+ dist/docker-debug-darwin-arm64
3031 dist/docker-debug-linux-amd64
3132 dist/docker-debug-windows-amd64.exe
Original file line number Diff line number Diff line change 1+ export GOOS = darwin
2+ export GOARCH = arm64
3+
4+ export TARGET = " dist/docker-debug-$GOOS -$GOARCH "
You can’t perform that action at this time.
0 commit comments