We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 474cbf5 commit 8e07a18Copy full SHA for 8e07a18
1 file changed
.github/workflows/release.yml
@@ -22,19 +22,15 @@ jobs:
22
- goos: linux
23
goarch: amd64
24
asset_suffix: linux-amd64
25
- compress_ext: .tar.gz
26
27
goarch: arm64
28
asset_suffix: linux-arm64
29
30
- goos: darwin # macOS
31
32
asset_suffix: darwin-amd64
33
34
35
36
asset_suffix: darwin-arm64
37
38
39
steps:
40
- name: Checkout code
@@ -64,7 +60,7 @@ jobs:
64
60
if: matrix.goos == 'linux' || matrix.goos == 'darwin'
65
61
run: |
66
62
BINARY_NAME="${{ env.APP_NAME }}-${{ matrix.asset_suffix }}"
67
- ARCHIVE_NAME="${BINARY_NAME}${matrix.compress_ext}"
63
+ ARCHIVE_NAME="${BINARY_NAME}.tar.gz"
68
cd build
69
tar czf "../${ARCHIVE_NAME}" "${BINARY_NAME}"
70
cd ..
0 commit comments