Skip to content

Commit d13476e

Browse files
Fix workflow tag concurrency checks
Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
1 parent ef2225b commit d13476e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/Documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
# Skip intermediate builds: always, but for the master branch.
1414
# Cancel intermediate builds: always, but for the master branch.
1515
group: ${{ github.workflow }}-${{ github.ref }}
16-
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*'}}
16+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref_type != 'tag' }}
1717

1818
jobs:
1919
build:

.github/workflows/Downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
# Skip intermediate builds: always, but for the master branch and tags.
1313
# Cancel intermediate builds: always, but for the master branch and tags.
1414
group: ${{ github.workflow }}-${{ github.ref }}
15-
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*' }}
15+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref_type != 'tag' }}
1616

1717
jobs:
1818
test:

.github/workflows/ReleaseTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
# Skip intermediate builds: always, but for the master branch and tags.
1313
# Cancel intermediate builds: always, but for the master branch and tags.
1414
group: ${{ github.workflow }}-${{ github.ref }}
15-
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*' }}
15+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref_type != 'tag' }}
1616

1717
jobs:
1818
test:

0 commit comments

Comments
 (0)