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 732dcbf commit f1f096e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 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,8 @@ jobs:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
*.args.TAG=dev
*.args.GIT_SHA=${{ github.sha }}
TAG=dev
GIT_SHA=${{ github.sha }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-bake-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
*.args.TAG=pr-${{ github.ref_name }}
*.args.GIT_SHA=${{ github.sha }}
TAG=pr-${{ github.ref_name }}
GIT_SHA=${{ github.sha }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/dev' }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
4 changes: 2 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,8 @@ jobs:
set: |
*.cache-from=type=gha
*.cache-to=type=gha,mode=max
*.args.TAG=latest
*.args.GIT_SHA=${{ github.sha }}
TAG=latest
GIT_SHA=${{ github.sha }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit f1f096e

Please sign in to comment.