aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-04-05 16:36:44 +0100
committerGravatar GitHub <[email protected]>2021-04-05 16:36:44 +0100
commit93be3f40a07f988d63cacb2dc24ca35c17fee76a (patch)
tree96d6e52ed2ebe323308f2f66eba806208e28699e
parentMerge pull request #471 from python-discord/policy-documents (diff)
parentMigrate GHCR_TOKEN -> GITHUB_TOKEN in Docker build action (diff)
Merge pull request #472 from python-discord/ks123/ghcr-token-to-github
Migrate GHCR_TOKEN -> GITHUB_TOKEN in Docker build action
-rw-r--r--.github/workflows/build.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 873bcda4..ab7321de 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -38,8 +38,8 @@ jobs:
uses: docker/login-action@v1
with:
registry: ghcr.io
- username: ${{ secrets.GHCR_USER }}
- password: ${{ secrets.GHCR_TOKEN }}
+ username: ${{ github.repository_owner }}
+ password: ${{ secrets.GITHUB_TOKEN }}
# Build the container, including an inline cache manifest to
# allow us to use the registry as a cache source.