We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1280258 commit 5d08be1Copy full SHA for 5d08be1
2 files changed
.github/workflows/release.yml
@@ -20,12 +20,13 @@ jobs:
20
- name: build
21
env:
22
RELEASE_VERSION: ${{ github.ref_name }}
23
- run: ./scripts/binary.sh darwin && ./scripts/binary.sh windows && ./scripts/binary.sh linux
+ run: ./scripts/binary.sh darwin && ./scripts/binary.sh darwin-m1 && ./scripts/binary.sh windows && ./scripts/binary.sh linux
24
- name: update
25
uses: softprops/action-gh-release@v1
26
if: startsWith(github.ref, 'refs/tags/')
27
with:
28
files: |
29
dist/docker-debug-darwin-amd64
30
+ dist/docker-debug-darwin-arm64
31
dist/docker-debug-linux-amd64
32
dist/docker-debug-windows-amd64.exe
scripts/variables.darwin-m1.env
@@ -0,0 +1,4 @@
1
+export GOOS=darwin
2
+export GOARCH=arm64
3
+
4
+export TARGET="dist/docker-debug-$GOOS-$GOARCH"
0 commit comments