Skip to content

Commit e4c9f32

Browse files
authored
multi-arch alpine builder
1 parent 52da1dd commit e4c9f32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-alpine.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444
shell: alpine.sh {0}
4545

4646
- name: Build ${{ matrix.arch }}
47-
run: CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o heplify-${{ matrix.arch }} .
47+
run: CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o heplify${{ matrix.arch == 'aarch64' && '-arm64' || '' }} .
4848
shell: alpine.sh {0}
4949

5050
- name: Try to run the binary ${{ matrix.arch }}
51-
run: ./heplify-${{ matrix.arch }} -h
51+
run: ./heplify${{ matrix.arch == 'aarch64' && '-arm64' || '' }} -h
5252
shell: alpine.sh {0}
5353

5454
- name: Upload ${{ matrix.arch }}
@@ -57,7 +57,7 @@ jobs:
5757
env:
5858
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5959
with:
60-
args: 'heplify-${{ matrix.arch }}'
60+
args: heplify${{ matrix.arch == 'aarch64' && '-arm64' || '' }}
6161

6262
docker-push:
6363
if: ${{ github.event_name != 'workflow_dispatch' }}

0 commit comments

Comments
 (0)