File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1717 steps :
1818 - name : Get version
1919 id : get_version
20- run : echo "version=${{ github.event.inputs.version || github.event.release.tag_name }}" >> $GITHUB_OUTPUT
20+ env :
21+ INPUTS_VERSION : ${{ github.event.inputs.version }}
22+ RELEASE_TAG_NAME : ${{ github.event.release.tag_name }}
23+ run : echo "version=${INPUTS_VERSION:-$RELEASE_TAG_NAME}" >> "$GITHUB_OUTPUT"
2124
2225 - name : Comment on linked issues that are mentioned in release
2326 if : |
Original file line number Diff line number Diff line change 1919 steps :
2020 - name : Get version
2121 id : get_version
22- run : echo "version=${{ github.event.inputs.version || github.event.release.tag_name }}" >> $GITHUB_OUTPUT
22+ env :
23+ INPUTS_VERSION : ${{ github.event.inputs.version }}
24+ RELEASE_TAG_NAME : ${{ github.event.release.tag_name }}
25+ run : echo "version=${INPUTS_VERSION:-$RELEASE_TAG_NAME}" >> "$GITHUB_OUTPUT"
2326
2427 - name : Update Github Release
2528 if : steps.get_version.outputs.version != ''
You can’t perform that action at this time.
0 commit comments