File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2929 name : Parse release branch name
3030 run : |
3131 # Sets the release-branch-name output to the version number with the last non-period element replaced with an 'x' and preprended with v.
32- echo "::set-output name= release-branch-name:: $(echo '${{ github.event.inputs.version }}' | sed -E 's/([^.]+)\.([^.]+)\.([^.]+)/v\1.\2.x/')"
32+ echo "release-branch-name= $(echo '${{ github.event.inputs.version }}' | sed -E 's/([^.]+)\.([^.]+)\.([^.]+)/v\1.\2.x/')" >> $GITHUB_OUTPUT
3333 # Sets the release-tag-name output to the version number with the last non-period element replace with a '0' and prepended with v
34- echo "::set-output name= release-tag-name:: $(echo '${{ github.event.inputs.version }}' | sed -E 's/([^.]+)\.([^.]+)\.([^.]+)/v\1.\2.0/')"
34+ echo "release-tag-name= $(echo '${{ github.event.inputs.version }}' | sed -E 's/([^.]+)\.([^.]+)\.([^.]+)/v\1.\2.0/')" >> $GITHUB_OUTPUT
3535 - id : checkout-release-branch
3636 name : Check out release branch
3737 # Will fail if there is no release branch yet or succeed otherwise
You can’t perform that action at this time.
0 commit comments