We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66adab3 commit 87f97a1Copy full SHA for 87f97a1
1 file changed
.github/workflows/docker-publish.yml
@@ -31,14 +31,14 @@ jobs:
31
if: github.event_name != 'pull_request'
32
uses: docker/login-action@v3
33
with:
34
- username: ${{ secrets.DOCKERHUB_USERNAME }}
+ username: ${{ env.DOCKERHUB_USERNAME }}
35
password: ${{ secrets.DOCKERHUB_TOKEN }}
36
37
- name: Extract metadata (tags, labels) for Docker
38
id: meta
39
uses: docker/metadata-action@v5
40
41
- images: ${{ secrets.DOCKERHUB_USERNAME }}/${{ env.IMAGE_NAME }}
+ images: ${{ env.DOCKERHUB_USERNAME }}/${{ env.IMAGE_NAME }}
42
tags: |
43
type=ref,event=branch
44
type=ref,event=pr
0 commit comments