summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorjannfis <jann@mistrust.net>2022-01-10 17:18:45 +0100
committerGitHub <noreply@github.com>2022-01-10 17:18:45 +0100
commit77a6e8f1f8afa1d5b5b5f440dd9341830e14f7ef (patch)
tree813e0d651f1e938de61457dd117dc9b3d11928f1 /.github
parentbf79b9da9328e7f5d2b8254bd32c01637541243a (diff)
fix: Fix docker environment variable (#340)
Signed-off-by: jannfis <jann@mistrust.net>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/image.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml
index 5b8e14e..501406c 100644
--- a/.github/workflows/image.yaml
+++ b/.github/workflows/image.yaml
@@ -34,7 +34,7 @@ jobs:
MULTIARCH=yes
fi
if [[ "${PUSH}" == "yes" ]]; then
- docker login --username "${DOCKER_USERNAME}" --password "${DOCKER_TOKEN}" quay.io
+ docker login --username "${DOCKER_USERNAME}" --password "${DOCKER_PASSWORD}" quay.io
fi
if [[ "${MULTIARCH}" = "yes" ]]; then
IMAGE_PUSH=${PUSH} make multiarch-image
@@ -44,4 +44,4 @@ jobs:
working-directory: argocd-image-updater
env:
DOCKER_USERNAME: ${{ secrets.QUAY_USERNAME }}
- DOCKER_PASSWORD: ${{ secrets.QUAY_TOKEN }} \ No newline at end of file
+ DOCKER_PASSWORD: ${{ secrets.QUAY_TOKEN }}