Skip to content

Commit

Permalink
Merge pull request #423 from shawaj/patch-2
Browse files Browse the repository at this point in the history
fix: tag ref incompatible with GH actions
  • Loading branch information
madninja authored Apr 14, 2023
2 parents f4df91c + 33032ee commit 9daff46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ jobs:
with:
push: true
platforms: linux/amd64,linux/arm64
labels: "VERSION=${{ env.image_tag }}"
tags: "quay.io/team-helium/test-images:gateway-${{ env.image_tag }}"
labels: VERSION=${{ env.image_tag }}
tags: quay.io/team-helium/test-images:gateway-${{ env.image_tag }}
cache-from: type=gha
cache-to: type=gha,mode=max

Expand All @@ -189,9 +189,9 @@ jobs:
with:
push: true
platforms: linux/amd64,linux/arm64
labels: "VERSION=${GITHUB_REF#refs/*/}"
labels: VERSION=${{ github.ref_name }}
tags: |
quay.io/team-helium/miner:gateway-${GITHUB_REF#refs/*/}
quay.io/team-helium/miner:gateway-${{ github.ref_name }}
quay.io/team-helium/miner:gateway-latest
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 9daff46

Please sign in to comment.