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.
1 parent dd61e3d commit 90a705dCopy full SHA for 90a705d
.github/workflows/build.yml
@@ -20,9 +20,11 @@ jobs:
20
strategy:
21
fail-fast: false
22
matrix:
23
- runner:
24
- - ubuntu-24.04
25
- - ubuntu-24.04-arm
+ include:
+ - platform: linux/amd64
+ runner: ubuntu-24.04
26
+ - platform: linux/arm64
27
+ runner: ubuntu-24.04-arm
28
steps:
29
- name: Checkout code
30
uses: actions/checkout@v4
@@ -121,6 +123,10 @@ jobs:
121
123
docker buildx imagetools create \
122
124
--tag "$DOCKER_METADATA_OUTPUT_TAGS" \
125
"$DOCKER_APP_IMAGE_ARM64" "$DOCKER_APP_IMAGE_X64"
126
+ - name: Inspect the multi-platform image
127
+ run: |
128
+ docker buildx imagetools inspect \
129
+ "$DOCKER_METADATA_OUTPUT_TAGS"
130
131
test:
132
runs-on: ubuntu-24.04
0 commit comments