Skip to content

Commit dba781c

Browse files
committed
Merge branch 'main' of github.com:mutablelogic/docker-postgres
2 parents 454dc8d + 20b93be commit dba781c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/docker.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,18 @@ jobs:
1717
arch: [ amd64, arm64 ]
1818
version: [ 17-bookworm ]
1919
runs-on:
20-
- 'ubuntu-latest'
20+
- ${{ matrix.arch == 'amd64' && 'ubuntu-latest' || matrix.arch }}
2121
env:
2222
ARCH: ${{ matrix.arch }}
2323
OS: linux
2424
VERSION: ${{ matrix.version }}
2525
DOCKER_REPO: ghcr.io/${{ github.repository }}
2626
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
2732
- name: Checkout
2833
uses: actions/checkout@v4
2934
with:

0 commit comments

Comments
 (0)