summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-09-02 13:21:28 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-09-02 13:21:28 +0200
commita25a41467b25d3b989596673daaee7336a704936 (patch)
tree04be79748a2bbb6aacfde0e5f0da32375a9e458b /.github
parentMigrate docker push to Github Container Registry (diff)
downloadseven-wonders-a25a41467b25d3b989596673daaee7336a704936.tar.gz
seven-wonders-a25a41467b25d3b989596673daaee7336a704936.tar.bz2
seven-wonders-a25a41467b25d3b989596673daaee7336a704936.zip
Use specific token for GitHub container registry
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 40df24c9..25dbadf2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -37,7 +37,7 @@ jobs:
with:
path: ./sw-server
username: ${{ github.actor }}
- password: ${{ github.token }}
+ password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
registry: ghcr.io
repository: joffrey-bion/seven-wonders-server
tag_with_ref: true
bgstack15