summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2021-07-27 16:07:10 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2021-07-27 16:07:10 +0200
commit1eff93232ab1c1f21d817ae3bd19e5e259398eac (patch)
treeb03278288bdacb97d707632bed5e4693dfac5149
parentMake deployment manual (diff)
downloadseven-wonders-1eff93232ab1c1f21d817ae3bd19e5e259398eac.tar.gz
seven-wonders-1eff93232ab1c1f21d817ae3bd19e5e259398eac.tar.bz2
seven-wonders-1eff93232ab1c1f21d817ae3bd19e5e259398eac.zip
Rename container registry token env var
-rw-r--r--.github/workflows/ci-cd.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml
index 98a52a7f..49149038 100644
--- a/.github/workflows/ci-cd.yml
+++ b/.github/workflows/ci-cd.yml
@@ -57,7 +57,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
- password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
+ password: ${{ secrets.GH_CONTAINER_REGISTRY_TOKEN }}
- name: Build and push to DockerHub and GitHub Container Registry
uses: docker/build-push-action@v2
bgstack15