Skip to content

Commit

Permalink
Fixing the case sensitive naming
Browse files Browse the repository at this point in the history
  • Loading branch information
leboiko committed Dec 5, 2024
1 parent cb226a9 commit 4c6fe4a
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
context: .
file: consumer/Dockerfile.production
push: true
tags: ${{ env.REGISTRY }}/${{ env.OWNER }}/consumer:${{ steps.meta.outputs.version }},${{ env.REGISTRY }}/${{ env.OWNER }}/consumer:latest
tags: |
${{ env.REGISTRY }}/${{ format(env.OWNER, 'lower') }}/consumer:${{ steps.meta.outputs.version }}
${{ env.REGISTRY }}/${{ format(env.OWNER, 'lower') }}/consumer:latest
build-args: |
RUST_VERSION=${{ env.RUST_VERSION }}
cache-from: type=gha
Expand All @@ -53,7 +55,9 @@ jobs:
context: .
file: image-guard/Dockerfile.production
push: true
tags: ${{ env.REGISTRY }}/${{ env.OWNER }}/image-guard:${{ steps.meta.outputs.version }},${{ env.REGISTRY }}/${{ env.OWNER }}/image-guard:latest
tags: |
${{ env.REGISTRY }}/${{ format(github.repository_owner, 'lower') }}/image-guard:${{ steps.meta.outputs.version }}
${{ env.REGISTRY }}/${{ format(github.repository_owner, 'lower') }}/image-guard:latest
build-args: |
RUST_VERSION=${{ env.RUST_VERSION }}
cache-from: type=gha
Expand All @@ -65,7 +69,9 @@ jobs:
context: .
file: substreams-sink/Dockerfile.production
push: true
tags: ${{ env.REGISTRY }}/${{ env.OWNER }}/substreams-sink:${{ steps.meta.outputs.version }},${{ env.REGISTRY }}/${{ env.OWNER }}/substreams-sink:latest
tags: |
${{ env.REGISTRY }}/${{ format(github.repository_owner, 'lower') }}/substreams-sink:${{ steps.meta.outputs.version }}
${{ env.REGISTRY }}/${{ format(github.repository_owner, 'lower') }}/substreams-sink:latest
build-args: |
RUST_VERSION=${{ env.RUST_VERSION }}
cache-from: type=gha
Expand All @@ -77,7 +83,9 @@ jobs:
context: hasura
file: hasura/Dockerfile
push: true
tags: ${{ env.REGISTRY }}/${{ env.OWNER }}/hasura:${{ steps.meta.outputs.version }},${{ env.REGISTRY }}/${{ env.OWNER }}/hasura:latest
tags: |
${{ env.REGISTRY }}/${{ format(github.repository_owner, 'lower') }}/hasura:${{ steps.meta.outputs.version }}
${{ env.REGISTRY }}/${{ format(github.repository_owner, 'lower') }}/hasura:latest
cache-from: type=gha
cache-to: type=gha,mode=max

Expand Down

0 comments on commit 4c6fe4a

Please sign in to comment.