Skip to content

Commit b27cf06

Browse files
authored
fix(ci): use correct GHCR creds (#14374)
While the refactor in https://github.com/linkerd/linkerd2/pull/14359/files was happening, we switched to using incorrect credentials for GHCR. This PR fixes that Signed-off-by: Zahari Dichev <[email protected]>
1 parent 6f918e7 commit b27cf06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
- uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1
5757
with:
5858
registry: ghcr.io
59-
username: ${{ github.actor }}
60-
password: ${{ secrets.GITHUB_TOKEN }}
59+
username: ${{ secrets.DOCKER_GHCR_USERNAME }}
60+
password: ${{ secrets.DOCKER_GHCR_PAT }}
6161
- uses: ./.github/actions/docker-build
6262
id: build
6363
with:

0 commit comments

Comments
 (0)