fix docker hub tag (#465)

This commit is contained in:
Adil Hafeez 2025-04-16 11:46:12 -07:00 committed by GitHub
parent ceca553399
commit 3cda4d6b69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,8 @@
name: Publish docker image (release) name: Publish docker image (release)
env:
DOCKER_IMAGE: katanemo/archgw
on: on:
release: release:
types: [published] types: [published]
@ -65,7 +68,6 @@ jobs:
push: true push: true
tags: ${{ steps.meta.outputs.tags }}-amd64 tags: ${{ steps.meta.outputs.tags }}-amd64
# Combine ARM64 and AMD64 images into a multi-arch manifest # Combine ARM64 and AMD64 images into a multi-arch manifest
create-manifest: create-manifest:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -82,6 +84,8 @@ jobs:
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: ${{ env.DOCKER_IMAGE }} images: ${{ env.DOCKER_IMAGE }}
tags: |
type=ref,event=tag
- name: Create Multi-Arch Manifest - name: Create Multi-Arch Manifest
run: | run: |