We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d6b189 commit f12c32dCopy full SHA for f12c32d
.github/workflows/docker-builder-reusable.yml
@@ -8,7 +8,6 @@ on:
8
required: false
9
type: string
10
file:
11
- default: "{context}/Dockerfile"
12
13
14
@@ -66,8 +65,8 @@ jobs:
66
65
platforms: ${{ steps.vars.outputs.platforms }}
67
68
build:
69
- name: Build container ${{ matrix.platform }}
70
- runs-on: ubuntu-24.04
+ name: Build container for ${{ matrix.platform }}
+ runs-on: ${{ startsWith(matrix.platform, 'linux/arm') && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
71
needs: vars
72
permissions:
73
contents: read
0 commit comments