Skip to content

Commit e33a1e6

Browse files
committed
fix: use GHCR_LOGIN/GHCR_PASSWORD secrets for container registry auth
1 parent a435cd5 commit e33a1e6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
uses: docker/login-action@v3
2626
with:
2727
registry: ${{ env.REGISTRY }}
28-
username: ${{ github.actor }}
29-
password: ${{ secrets.GITHUB_TOKEN }}
28+
username: ${{ secrets.GHCR_LOGIN }}
29+
password: ${{ secrets.GHCR_PASSWORD }}
3030

3131
- name: Set up Docker Buildx
3232
uses: docker/setup-buildx-action@v3

0 commit comments

Comments
 (0)