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 5730ec7 commit c477087Copy full SHA for c477087
.github/actions/update-version/action.yml
@@ -71,12 +71,16 @@ runs:
71
git add ${{ inputs.changelog-output-file }}
72
73
- name: update version
74
- id: result
+ if: ${{ inputs.template-extension != '' || inputs.files != '' }}
75
working-directory: ${{ github.workspace }}
76
shell: bash
77
run: |
78
SCRIPT="${{inputs.ksp-build-tools-root}}/update-version.sh"
79
chmod +x $SCRIPT
80
$SCRIPT -g true -d true $VERSION_STRING ${{inputs.template-extension}} ${{inputs.files}}
81
- echo "version-string=$VERSION_STRING" >> "$GITHUB_OUTPUT"
82
+ - name: output
83
+ id: result
84
+ shell: bash
85
+ run: |
86
+ echo "version-string=$VERSION_STRING" >> "$GITHUB_OUTPUT"
0 commit comments