We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb72580 commit 7549643Copy full SHA for 7549643
1 file changed
.github/workflows/tag-recreate-lts.yml
@@ -13,7 +13,8 @@ permissions:
13
14
jobs:
15
recreate-lts-release:
16
- if: startsWith(github.event.release.tag_name, '1.2.')
+ # This job will recreate the LTS release if the tag starts with '1.2.' and is not a release candidate
17
+ if: startsWith(github.event.release.tag_name, '1.2.') && !contains(github.event.release.tag_name, 'rc')
18
name: Recreate LTS Release
19
runs-on: ubuntu-latest
20
outputs:
0 commit comments