Skip to content

Commit

Permalink
fix(docker): specify registry in build step (#32)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Pilar <tomas.pilar@apoco.com>
  • Loading branch information
pilartomas authored Oct 25, 2024
1 parent 0adc8e2 commit 43ce10f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-release-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
tags: |
i-am-bee/bee-api:latest
i-am-bee/bee-api:${{ steps.get_version.outputs.VERSION }}
cache-from: type=registry,ref=i-am-bee/bee-api:buildcache
cache-to: type=registry,ref=i-am-bee/bee-api:buildcache,mode=max
${{ vars.DOCKER_REGISTRY }}/i-am-bee/bee-api:latest
${{ vars.DOCKER_REGISTRY }}/i-am-bee/bee-api:${{ steps.get_version.outputs.VERSION }}
cache-from: type=registry,ref=${{ vars.DOCKER_REGISTRY }}/i-am-bee/bee-api:buildcache
cache-to: type=registry,ref=${{ vars.DOCKER_REGISTRY }}/i-am-bee/bee-api:buildcache,mode=max

0 comments on commit 43ce10f

Please sign in to comment.