Skip to content

Commit

Permalink
Build images for every commit in master (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamaleybov authored Feb 15, 2024
1 parent ba836cd commit cc0a7a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-publish-all-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# for master branch we want every commit to have corresponding images
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.sha || github.ref }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit cc0a7a5

Please sign in to comment.