Skip to content

Commit

Permalink
chore: Fixes release actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andyquinterom committed Oct 3, 2024
1 parent d53dff0 commit 0481893
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ jobs:
TAG_R: ixpantia/faucet:r4.4
TAG_LATEST: ixpantia/faucet:latest
run: |
# Extract the minor version (e.g., from 1.2.3 to 1.2)
TAG_MINOR=$(echo "${{ github.ref_name }}" | cut -d'.' -f1-2)
TAG_MINOR="ixpantia/faucet:$TAG_MINOR-r4.4"
docker buildx build \
--platform $PLATFORM \
Expand Down Expand Up @@ -97,15 +97,14 @@ jobs:
TAG_R: ixpantia/faucet:r4.3
TAG_LATEST: ixpantia/faucet:latest
run: |
# Extract the minor version (e.g., from 1.2.3 to 1.2)
TAG_MINOR=$(echo "${{ github.ref_name }}" | cut -d'.' -f1-2)
TAG_MINOR="ixpantia/faucet:$TAG_MINOR-r4.3"
docker buildx build \
--platform $PLATFORM \
--push \
-t $TAG_V \
-t $TAG_R \
-t $TAG_LATEST \
-t $TAG_MINOR \
--build-arg R_VERSION=4.3 \
.
Expand All @@ -131,15 +130,14 @@ jobs:
TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.2
TAG_R: ixpantia/faucet:r4.2
run: |
# Extract the minor version (e.g., from 1.2.3 to 1.2)
TAG_MINOR=$(echo "${{ github.ref_name }}" | cut -d'.' -f1-2)
TAG_MINOR="ixpantia/faucet:$TAG_MINOR-r4.2"
docker buildx build \
--platform $PLATFORM \
--push \
-t $TAG_V \
-t $TAG_R \
-t $TAG_LATEST \
-t $TAG_MINOR \
--build-arg R_VERSION=4.2 \
.
Expand All @@ -165,15 +163,14 @@ jobs:
TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.1
TAG_R: ixpantia/faucet:r4.1
run: |
# Extract the minor version (e.g., from 1.2.3 to 1.2)
TAG_MINOR=$(echo "${{ github.ref_name }}" | cut -d'.' -f1-2)
TAG_MINOR="ixpantia/faucet:$TAG_MINOR-r4.1"
docker buildx build \
--platform $PLATFORM \
--push \
-t $TAG_V \
-t $TAG_R \
-t $TAG_LATEST \
-t $TAG_MINOR \
--build-arg R_VERSION=4.1 \
.
Expand Down

0 comments on commit 0481893

Please sign in to comment.