Skip to content

Commit 32c22eb

Browse files
authored
GHCR -image push
Update backup repo images to push their docker image to GHCR Packages registry
1 parent 4a83a0a commit 32c22eb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build-and-publish.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
uses: docker/metadata-action@v5
3030
with:
3131
images: ${{ vars.DOCKER_ORG }}/${{ github.event.repository.name }}
32+
# Add an additional configuration to ensure valid tags
33+
tags: |
34+
${{ github.ref }} # This will take the branch name or tag name
3235
3336
- name: Build and push Docker image to Docker Hub
3437
uses: docker/build-push-action@v5
@@ -42,4 +45,8 @@ jobs:
4245
with:
4346
context: .
4447
push: true
45-
tags: ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ steps.meta.outputs.tags }}
48+
# Create a valid tag for the GitHub Container Registry
49+
tags: |
50+
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:latest
51+
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ github.sha }}
52+
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)