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 47cc68e commit 71e82a3Copy full SHA for 71e82a3
.github/workflows/docker-build.yml
@@ -17,6 +17,12 @@ jobs:
17
- name: Set up Docker Buildx
18
uses: docker/setup-buildx-action@v1
19
20
+ - name: Log in to GitHub Container Registry
21
+ uses: docker/login-action@v3
22
+ with:
23
+ registry: ghcr.io
24
+ username: ${{ github.repository_owner }}
25
+ password: ${{ secrets.GITHUB_TOKEN }}
26
- name: Build and push Docker image
27
uses: docker/build-push-action@v2
28
with:
@@ -25,10 +31,5 @@ jobs:
31
push: true
32
tags: nginx-utils:latest
33
- - name: Log in to GitHub Container Registry
29
- uses: docker/login-action@v3
30
- with:
- registry: ghcr.io
- username: ${{ github.repository_owner }}
- password: ${{ secrets.GITHUB_TOKEN }}
34
+
35
0 commit comments