Skip to content

Commit

Permalink
fix(ci): build-docker on correct arch
Browse files Browse the repository at this point in the history
  • Loading branch information
madonuko authored May 15, 2024
1 parent dc4f7da commit e90772c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
outputs:
artifact: ${{ matrix.variant }}
# ubuntu-latest unless we're building aarch64
runs-on: ${{ matrix.variant == 'base/base-docker-aarch64' && 'arm64' || 'ubuntu-latest' }}
runs-on: ${{ endsWith(matrix.variant, '-aarch64') && 'arm64' || 'ubuntu-latest' }}
container:
image: ghcr.io/terrapkg/builder:f40
# Pass /dev from host to container
Expand Down

0 comments on commit e90772c

Please sign in to comment.