Skip to content

Commit 6d20fa9

Browse files
committed
remove linux arm64 build step from release.yml
1 parent a34e62f commit 6d20fa9

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,11 @@ jobs:
2929
- name: Build artifact amd64
3030
run: go build -o gmd_linux_amd64 .
3131

32-
- name: Build artifact arm64
33-
run: env GOOS=linux GOARCH=arm64 go build -o gmd_linux_arm64 .
34-
3532
- name: Store version info
3633
run: echo "version=v$(./gmd_linux_amd64 -v | cut --delimiter ' ' --fields 3)" >> $GITHUB_ENV
3734

3835
- name: Tar artifact
39-
run: |
40-
tar czf gomanagedocker_linux_amd64_${version}.tar.gz gmd_linux_amd64
41-
tar czf gomanagedocker_linux_arm64_${version}.tar.gz gmd_linux_arm64
36+
run: tar czf gomanagedocker_linux_amd64_${version}.tar.gz gmd_linux_amd64
4237

4338
- name: Upload linux assets
4439
uses: actions/upload-artifact@v4
@@ -95,3 +90,4 @@ jobs:
9590
files: |
9691
linux_artifacts/*
9792
macos_artifacts/*
93+

0 commit comments

Comments
 (0)