Skip to content

Commit 85c014b

Browse files
authored
Fix architecture name and update OS checks in workflow
1 parent 1f0ed5d commit 85c014b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/build-pkg-unix.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runner: "macos-13"
2121
- name: "x86_64-linux"
2222
runner: "ubuntu-latest"
23-
- name: "aarch"
23+
- name: "aarch64-linux"
2424
runner: "ubuntu-24.04-arm"
2525
steps:
2626
- name: "Checkout remote"
@@ -33,11 +33,11 @@ jobs:
3333
id: setup-runtime
3434
run: |
3535
case "${{ matrix.os.name }}" in
36-
linux-*)
36+
*-linux)
3737
bin/spc-alpine-docker --help
3838
echo "SPC_PREFIX=bin/spc-alpine-docker" >> "$GITHUB_OUTPUT"
3939
;;
40-
macos-*)
40+
*-darwin)
4141
bin/setup-runtime
4242
export PATH="$(pwd)/bin:$PATH"
4343
echo "$(pwd)/bin" >> $GITHUB_PATH
@@ -70,6 +70,3 @@ jobs:
7070
path: |
7171
buildroot/
7272
if-no-files-found: error
73-
- name: Setup tmate session
74-
if: ${{ failure() }}
75-
uses: mxschmitt/action-tmate@v3

0 commit comments

Comments
 (0)