Skip to content

Commit

Permalink
fix: Minor fix to docker bake github actions
Browse files Browse the repository at this point in the history
Signed-off-by: Diwank Singh Tomer <[email protected]>
  • Loading branch information
creatorrr committed Sep 28, 2024
1 parent f1f096e commit 876b48e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/dev-push-to-hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ jobs:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
TAG=dev
GIT_SHA=${{ github.sha }}
env:
TAG: dev
GIT_SHA: ${{ github.sha }}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/docker-bake-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
TAG=pr-${{ github.ref_name }}
GIT_SHA=${{ github.sha }}
env:
TAG: pr-${{ github.ref_name }}
GIT_SHA: ${{ github.sha }}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/main-push-to-hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ jobs:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
TAG=latest
GIT_SHA=${{ github.sha }}
env:
TAG: latest
GIT_SHA: ${{ github.sha }}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit 876b48e

Please sign in to comment.