diff options
author | 2021-04-05 18:56:28 +0300 | |
---|---|---|
committer | 2021-04-05 18:56:28 +0300 | |
commit | 2d03c9956e17709d00daeda00b1e778214708d50 (patch) | |
tree | 6cc7e37ceedc65df0bfbb192b0d59df622780d82 | |
parent | Merge pull request #577 from ChrisLovering/Handle-DMChannels (diff) |
Migrate GHCR_TOKEN -> GITHUB_TOKEN in Docker build action
GITHUB_TOKEN has now enough permissions to be used for pushing to GHCR, so we don't need PAT anymore.
-rw-r--r-- | .github/workflows/build.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0a006eb9..baa046ce 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -36,7 +36,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.GHCR_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} # Build and push the container to the GitHub Container # Repository. The container will be tagged as "latest" |