File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -46,15 +46,15 @@ jobs:
4646 if : ${{ matrix.os == 'ubuntu-24.04' }}
4747 run : echo "ARCH_TAG=amd64" >> $GITHUB_ENV
4848
49- - name : Set architecture tag (arm64 )
49+ - name : Set architecture tag (arm )
5050 if : ${{ contains(matrix.os, 'arm') }}
5151 run : echo "ARCH_TAG=arm64" >> $GITHUB_ENV
5252
5353 - name : Extract metadata (tags, labels) for Docker
5454 id : meta
5555 uses : docker/metadata-action@v5
5656 with :
57- images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.os }}
57+ images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
5858
5959 - name : Build Docker image
6060 uses : docker/build-push-action@v6
@@ -82,12 +82,11 @@ jobs:
8282 - name : Download artifacts
8383 uses : actions/download-artifact@v4
8484 with :
85- merge-multiple : true
8685 pattern : " ubuntu-*.tar"
87- path : ${{ runner.temp }}
86+ path : images
8887
8988 - name : Load image (arm)
9089 run : |
91- docker load --input ${{ runner.temp }} /ubuntu-24.04-arm.tar
92- docker load --input ${{ runner.temp }} /ubuntu-24.04.tar
90+ docker load --input images /ubuntu-24.04-arm.tar
91+ docker load --input images /ubuntu-24.04.tar
9392 docker image ls -a
You can’t perform that action at this time.
0 commit comments