We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 454dc8d + 20b93be commit dba781cCopy full SHA for dba781c
.github/workflows/docker.yaml
@@ -17,13 +17,18 @@ jobs:
17
arch: [ amd64, arm64 ]
18
version: [ 17-bookworm ]
19
runs-on:
20
- - 'ubuntu-latest'
+ - ${{ matrix.arch == 'amd64' && 'ubuntu-latest' || matrix.arch }}
21
env:
22
ARCH: ${{ matrix.arch }}
23
OS: linux
24
VERSION: ${{ matrix.version }}
25
DOCKER_REPO: ghcr.io/${{ github.repository }}
26
steps:
27
+ - name: Install build tools
28
+ run: |
29
+ sudo apt -y update
30
+ sudo apt -y install build-essential git
31
+ git config --global advice.detachedHead false
32
- name: Checkout
33
uses: actions/checkout@v4
34
with:
0 commit comments