File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,10 @@ name: deploy
88# See https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
99on :
1010 push :
11- # Don't deploy tags as they conflict with [maven-release-plugin] prepare release MAJOR.MINOR.PATCH
12- tags : ' '
11+ # Don't deploy tags because the same commit for MAJOR.MINOR.PATCH is also
12+ # on master: Redundant deployment of a release version will fail uploading.
13+ tags-ignore :
14+ - ' *'
1315 branches : master
1416
1517jobs :
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ name: test
66on :
77 # We run tests on non-tagged pushes to master that aren't a commit made by the release plugin
88 push :
9- tags : ' '
9+ tags-ignore :
10+ - ' *'
1011 branches : master
1112 paths-ignore : ' **/*.md'
1213 # We also run tests on pull requests targeted at the master branch.
You can’t perform that action at this time.
0 commit comments