diff options
author | 2021-04-05 16:57:15 +0100 | |
---|---|---|
committer | 2021-04-05 16:57:15 +0100 | |
commit | b2b49fa2aff7b0a94fde62e863c428954eaa2967 (patch) | |
tree | d7056e3f9e8c237478a1e0eb4f027bae339ad743 | |
parent | Merge PR #98 - update policy documents (diff) |
Move from GHCR_TOKEN to GITHUB_TOKEN in Docker publish stage
-rw-r--r-- | .github/workflows/lint-test-build-push.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint-test-build-push.yaml b/.github/workflows/lint-test-build-push.yaml index 0b1733f..92ca53e 100644 --- a/.github/workflows/lint-test-build-push.yaml +++ b/.github/workflows/lint-test-build-push.yaml @@ -41,7 +41,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.GHCR_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} # Create a local cache directory for PR builds, as the image # we build for PRs may start to deviate from the "latest" image |