We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 17a57be + 8868e80 commit 994e13eCopy full SHA for 994e13e
.github/workflows/nextjs.yml
@@ -10,9 +10,6 @@ on:
10
- closed
11
12
env:
13
- DOCKER_USER: ${{secrets.DOCKER_USER}}
14
- DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
15
- REPO_NAME: ${{secrets.REPO_NAME}}
16
# Use docker.io for Docker Hub if empty
17
REGISTRY: docker.io
18
# github.repository as <account>/<repo>
@@ -95,8 +92,8 @@ jobs:
95
92
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
96
93
with:
97
94
registry: ${{ env.REGISTRY }}
98
- username: ${{ env.DOCKER_USER }}
99
- password: ${{ env.DOCKER_PASSWORD }}
+ username: ${{ secrets.DOCKER_USER }}
+ password: ${{ secrets.DOCKER_PASSWORD }}
100
101
# Extract metadata (tags, labels) for Docker
102
# https://github.com/docker/metadata-action
0 commit comments