build(docker): return original names for docker tags (#1009)

This commit is contained in:
Alexander Puzynia
2025-08-28 19:36:37 -07:00
committed by GitHub
parent 146b2572c3
commit 8d04bc3498

View File

@@ -167,8 +167,8 @@ jobs:
docker buildx build \
--platform linux/amd64,linux/arm64 \
--build-arg APP_VERSION=${{ env.image_tag }} \
--tag ${{ secrets.DOCKER_USERNAME }}/booklore:${{ env.image_tag }} \
--tag ghcr.io/${{ github.actor }}/booklore:${{ env.image_tag }} \
--tag booklore/booklore:${{ env.image_tag }} \
--tag ghcr.io/booklore-app/booklore:${{ env.image_tag }} \
--push .
- name: Push Latest Tag (Only for Master)
@@ -177,8 +177,8 @@ jobs:
docker buildx build \
--platform linux/amd64,linux/arm64 \
--build-arg APP_VERSION=${{ env.new_tag }} \
--tag ${{ secrets.DOCKER_USERNAME }}/booklore:latest \
--tag ghcr.io/${{ github.actor }}/booklore:latest \
--tag booklore/booklore:latest \
--tag ghcr.io/booklore-app/booklore:latest \
--push .
- name: Create Git Tag (Only for Master)