Skip to content

Commit

Permalink
build: fix repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
Michsior14 committed Sep 23, 2024
1 parent 2b2b312 commit 0ce3c80
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ jobs:
with:
context: ./tools/${{ env.IMAGE_NAME }}
platforms: ${{ matrix.platform }}
cache-from: type=gha
cache-to: type=gha,mode=max
outputs: type=image,name=${{ env.AIS_REPOSITORY_NAME }},push-by-digest=true,name-canonical=true,push=true
cache-from: type=gha,scope=${{ env.IMAGE_NAME}}-${{ github.ref_name }}-${{ matrix.platform }}
cache-to: type=gha,scope=${{ env.IMAGE_NAME }}-${{ github.ref_name }}-${{ matrix.platform }},mode=max
outputs: type=image,name=${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ env.AIS_REPOSITORY_NAME }}
build-args: |
node_version=${{ matrix.node }}
ubuntu_version=${{ env.UBUNTU_VERSION }}
Expand Down Expand Up @@ -168,9 +169,10 @@ jobs:
with:
context: ./tools/${{ env.IMAGE_NAME }}
platforms: ${{ matrix.platform }}
cache-from: type=gha
cache-to: type=gha,mode=max
outputs: type=image,name=${{ env.REPOSITORY_NAME }},push-by-digest=true,name-canonical=true,push=true
cache-from: type=gha,scope=${{ env.IMAGE_NAME}}-${{ github.ref_name }}-${{ matrix.platform }}
cache-to: type=gha,scope=${{ env.IMAGE_NAME }}-${{ github.ref_name }}-${{ matrix.platform }},mode=max
outputs: type=image,name=${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
tags: ${{ env.REPOSITORY_NAME }}
build-args: |
node_version=${{ matrix.node }}
ubuntu_version=${{ env.UBUNTU_VERSION }}
Expand Down

0 comments on commit 0ce3c80

Please sign in to comment.