From 54f83f43a355dd95343b397e4e2928181253a86d Mon Sep 17 00:00:00 2001 From: Andrew Dryga Date: Thu, 16 Nov 2023 22:13:31 -0600 Subject: [PATCH] Fix typo --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7fa8b3bcf..b0e05057a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -67,10 +67,10 @@ jobs: echo "Retagging ${image} from ${SOURCE_TAG}" docker tag ${SOURCE_TAG} ${{ steps.login-production.outputs.registry }}/firezone/${image}:${{ inputs.tag || github.sha }} - docker tag ${SOURCE_TAG} ${{ steps.login-production.outputs.registry }}/firezone/${image}:${{ env.VERSION }} - docker tag ${SOURCE_TAG} ${{ steps.login-production.outputs.registry }}/firezone/${image}:${{ env.MAJOR_VERSION }} - docker tag ${SOURCE_TAG} ${{ steps.login-production.outputs.registry }}/firezone/${image}:${{ env.MAJOR_MINOR_VERSION }} docker tag ${SOURCE_TAG} ${{ steps.login-production.outputs.registry }}/firezone/${image}:${{ env.VERSION }}-${{ inputs.tag || github.sha }} + docker tag ${SOURCE_TAG} ${{ steps.login-production.outputs.registry }}/firezone/${image}:${{ env.VERSION }} + docker tag ${SOURCE_TAG} ${{ steps.login-production.outputs.registry }}/firezone/${image}:${MAJOR_VERSION} + docker tag ${SOURCE_TAG} ${{ steps.login-production.outputs.registry }}/firezone/${image}:${MAJOR_MINOR_VERSION} docker push --all-tags ${{ steps.login-production.outputs.registry }}/firezone/${image} done