We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd45651 commit 6cf43b9Copy full SHA for 6cf43b9
.github/actions/build-docker/action.yml
@@ -65,15 +65,15 @@ runs:
65
if: inputs.push == 'true'
66
uses: docker/login-action@v3
67
with:
68
- registry: ${{ inputs.registry }}
+ registry: ${{ inputs.registry == 'docker.io' && '' || inputs.registry }}
69
username: ${{ inputs.username }}
70
password: ${{ inputs.password }}
71
72
- name: Extract metadata
73
id: meta
74
uses: docker/metadata-action@v5
75
76
- images: ${{ inputs.registry }}/${{ inputs.image-name }}
+ images: ${{ inputs.image-name }}
77
tags: |
78
# For releases: apply SemVer tags and latest (excludes pre-releases automatically)
79
type=semver,pattern={{version}}
0 commit comments