From 808703f7002178030c6556863946747234009855 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Thu, 24 Mar 2022 15:19:45 +0000 Subject: [PATCH] Fix references to `env.GHCR_NAMESPACE` --- .github/workflows/docker.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 272c43f92..129a9f0a1 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -57,7 +57,7 @@ jobs: push: true tags: | ${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:main - ghcr.io/${{ GHCR_NAMESPACE }}/dendrite-monolith:main + ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:main - name: Build release monolith image if: github.event_name == 'release' # Only for GitHub releases @@ -73,8 +73,8 @@ jobs: tags: | ${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:latest ${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:${{ env.RELEASE_VERSION }} - ghcr.io/${{ GHCR_NAMESPACE }}/dendrite-monolith:latest - ghcr.io/${{ GHCR_NAMESPACE }}/dendrite-monolith:${{ env.RELEASE_VERSION }} + ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:latest + ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:${{ env.RELEASE_VERSION }} polylith: name: Polylith image @@ -116,7 +116,7 @@ jobs: push: true tags: | ${{ env.DOCKER_NAMESPACE }}/dendrite-polylith:main - ghcr.io/${{ GHCR_NAMESPACE }}/dendrite-polylith:main + ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-polylith:main - name: Build release polylith image if: github.event_name == 'release' # Only for GitHub releases @@ -132,5 +132,5 @@ jobs: tags: | ${{ env.DOCKER_NAMESPACE }}/dendrite-polylith:latest ${{ env.DOCKER_NAMESPACE }}/dendrite-polylith:${{ env.RELEASE_VERSION }} - ghcr.io/${{ GHCR_NAMESPACE }}/dendrite-polylith:latest - ghcr.io/${{ GHCR_NAMESPACE }}/dendrite-polylith:${{ env.RELEASE_VERSION }} + ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-polylith:latest + ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-polylith:${{ env.RELEASE_VERSION }}