We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d95b424 commit 5570963Copy full SHA for 5570963
.github/workflows/docker-build.yml
@@ -39,12 +39,19 @@ jobs:
39
done
40
build:
41
needs: define-matrix
42
- runs-on: >-
43
- ${{ (contains(matrix.component, 'arm64')) && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
44
strategy:
45
fail-fast: false
46
matrix:
47
component: ${{ fromJSON(needs.define-matrix.outputs.components) }}
+ strategy:
+ fail-fast: false
48
+ matrix:
49
+ component: ${{ fromJSON(needs.define-matrix.outputs.components) }}
50
+ include:
51
+ - runs-on: ubuntu-latest
52
+ - runs-on: ubuntu-24.04-arm
53
+ component: arm64
54
+ runs-on: ${{ matrix.runs-on }}
55
steps:
56
- uses: actions/checkout@v4
57
- name: Set up Docker Buildx
0 commit comments