Skip to content

Commit e66b3d6

Browse files
committed
Don't cancel tagged builds.
1 parent 9a72dae commit e66b3d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches: [ "master" ]
77
concurrency:
88
group: ${{ github.ref }}
9-
cancel-in-progress: true
9+
cancel-in-progress: ${{ github.event_name != 'push' || !startsWith(github.ref, 'refs/tags/') }} # Cancel if not a tag push.
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)