We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14d3fc2 commit 87ce8c5Copy full SHA for 87ce8c5
1 file changed
.github/workflows/build.yml
@@ -32,7 +32,7 @@ jobs:
32
--file Dockerfile --tag $IMAGE_NAME:$VERSION
33
34
- name: Log into GitHub Container Registry
35
- run: echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
+ run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
36
37
- name: Push image to GitHub Container Registry
38
run: |
@@ -44,4 +44,4 @@ jobs:
44
docker push $IMAGE_NAME:$VERSION
45
# Push latest as well for caching purposes
46
docker tag $IMAGE_NAME:$VERSION $IMAGE_NAME:latest
47
- docker push $IMAGE_NAME:latest
+ docker push $IMAGE_NAME:latest
0 commit comments