We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51ab8fc commit f576b12Copy full SHA for f576b12
1 file changed
.github/workflows/dockerhub.yaml
@@ -18,12 +18,11 @@ jobs:
18
- name: Checkout repository
19
uses: actions/checkout@v3
20
21
- - name: Log in to the Container registry
+ - name: Log in to Docker Hub
22
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
23
with:
24
- registry: ${{ env.REGISTRY }}
25
- username: ${{ github.actor }}
26
- password: ${{ secrets.GITHUB_TOKEN }}
+ username: ${{ secrets.DOCKER_USERNAME }}
+ password: ${{ secrets.DOCKER_PASSWORD }}
27
28
- name: Extract metadata (tags, labels) for Docker
29
id: meta
@@ -37,4 +36,6 @@ jobs:
37
36
context: .
38
push: true
39
tags: ${{ steps.meta.outputs.tags }}
40
- labels: ${{ steps.meta.outputs.labels }}
+ labels: ${{ steps.meta.outputs.labels }}
+ - name: Run latest-tag
41
+ uses: EndBug/latest-tag@latest
0 commit comments