Skip to content

Commit a27f304

Browse files
committed
Minor improvements
1 parent 153d9a1 commit a27f304

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/publish_docker.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)