File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
1818jobs :
1919 build :
Original file line number Diff line number Diff 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
1717jobs :
1818 test :
Original file line number Diff line number Diff 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
1717jobs :
1818 test :
You can’t perform that action at this time.
0 commit comments