Skip to content

Commit 52da1dd

Browse files
authored
Update release-alpine.yml
1 parent 65e46bc commit 52da1dd

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/release-alpine.yml

+11-8
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ jobs:
1313

1414
build:
1515
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
arch: [x86_64, aarch64]
1619
steps:
1720
- uses: actions/checkout@v4
1821
- name: Set up Alpine Linux for x86_64 (build arch)
1922
uses: jirutka/setup-alpine@v1
2023
with:
21-
arch: x86_64
24+
arch: ${{ matrix.arch }}
2225
id: alpine-root
2326
packages: >
2427
build-base
@@ -32,29 +35,29 @@ jobs:
3235
go
3336
sudo
3437
35-
- name: Install LuaJit 2.1
38+
- name: Install LuaJit 2.1 ${{ matrix.arch }}
3639
run: |
3740
git clone https://luajit.org/git/luajit-2.0.git \
3841
&& cd luajit-2.0 \
3942
&& git checkout v2.1 \
4043
&& make CCOPT="-static -fPIC" BUILDMODE="static" && sudo make install
4144
shell: alpine.sh {0}
4245

43-
- name: Build
44-
run: CGO_ENABLED=1 GOOS=linux go build -a --ldflags '-linkmode external -extldflags "-static -s -w"' -o heplify .
46+
- 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 }} .
4548
shell: alpine.sh {0}
4649

47-
- name: Try to run the binary
48-
run: ./heplify -h
50+
- name: Try to run the binary ${{ matrix.arch }}
51+
run: ./heplify-${{ matrix.arch }} -h
4952
shell: alpine.sh {0}
5053

51-
- name: Upload
54+
- name: Upload ${{ matrix.arch }}
5255
if: ${{ github.event_name != 'workflow_dispatch' }}
5356
uses: skx/github-action-publish-binaries@master
5457
env:
5558
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5659
with:
57-
args: 'heplify'
60+
args: 'heplify-${{ matrix.arch }}'
5861

5962
docker-push:
6063
if: ${{ github.event_name != 'workflow_dispatch' }}

0 commit comments

Comments
 (0)