File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 1717jobs :
1818 build :
1919 name : Build images
20- runs-on : ubuntu-24.04
2120 strategy :
2221 fail-fast : false
2322 matrix :
2423 platform : [
25- {name: "linux/amd64", tag: "amd64"},
26- {name: "linux/arm64/v8", tag: "arm64v8"}
24+ {name: "linux/amd64", tag: "amd64", runner: "ubuntu-24.04" },
25+ {name: "linux/arm64/v8", tag: "arm64v8", runner: "ubuntu-24.04-arm" }
2726 ]
27+ runs-on : ${{ matrix.platform.runner }}
2828 steps :
2929 - name : Checkout
3030 uses : actions/checkout@v4
3131
32- - name : Install qemu dependency
33- run : |
34- sudo apt-get update
35- sudo apt-get install -y qemu-user-static
36-
3732 - name : Build Image
3833 id : build_image
3934 run : buildah bud --platform ${{ matrix.platform.name }} -f ./Dockerfile -t ${{ env.IMAGE_NAME }}:${{ matrix.platform.tag }} .
You can’t perform that action at this time.
0 commit comments