From 47fa507bee16b113d4986fd26bed171df6dba32c Mon Sep 17 00:00:00 2001 From: andres Date: Fri, 12 Jan 2024 13:28:36 -0500 Subject: [PATCH] chore(CI): Fixes workflow to publish docker images --- .github/workflows/release.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 329492f..2e6818b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -57,10 +57,10 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build Docker image env: - - PLATFORM: linux/amd64,linux/arm64 - - TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.3 - - TAG_R: ixpantia/faucet:r4.3 - - TAG_LATEST: ixpantia/faucet:latest + PLATFORM: linux/amd64,linux/arm64 + TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.3 + TAG_R: ixpantia/faucet:r4.3 + TAG_LATEST: ixpantia/faucet:latest run: | docker buildx build \ --platform $PLATFORM \ @@ -88,9 +88,9 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build Docker image env: - - PLATFORM: linux/amd64,linux/arm64 - - TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.2 - - TAG_R: ixpantia/faucet:r4.2 + PLATFORM: linux/amd64,linux/arm64 + TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.2 + TAG_R: ixpantia/faucet:r4.2 run: | docker buildx build \ --platform $PLATFORM \ @@ -117,9 +117,9 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build Docker image env: - - PLATFORM: linux/amd64 - - TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.1 - - TAG_R: ixpantia/faucet:r4.1 + PLATFORM: linux/amd64 + TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.1 + TAG_R: ixpantia/faucet:r4.1 run: | docker buildx build \ --platform $PLATFORM \