Skip to content

Commit

Permalink
chore(CI): Fixes workflow to publish docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
andyquinterom committed Jan 12, 2024
1 parent 1f6e00d commit 47fa507
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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 \
Expand All @@ -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 \
Expand Down

0 comments on commit 47fa507

Please sign in to comment.