File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 29
29
uses : docker/metadata-action@v5
30
30
with :
31
31
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
32
35
33
36
- name : Build and push Docker image to Docker Hub
34
37
uses : docker/build-push-action@v5
42
45
with :
43
46
context : .
44
47
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 }}
You can’t perform that action at this time.
0 commit comments