More logging.

This commit is contained in:
2025-07-01 14:00:26 -07:00
parent 47f48d4e8c
commit cb3981194b
2 changed files with 14 additions and 0 deletions

View File

@@ -55,5 +55,14 @@ runs:
- name: "Get next version."
id: parse
run: |
NAME="Version Increment"
echo "::group::$NAME - Inputs"
echo "${{ toJSON(inputs) }}"
echo "::endgroup::"
bash ${{ github.action_path }}/increment_version.sh "${{ inputs.major }}" "${{ inputs.minor }}" "${{ inputs.patch }}" "${{ inputs.revision }}" "${{ inputs.suffix }}" "${{ inputs.metadata }}" "${{ inputs.incrementMode }}" "${{ inputs.gitShaMetadata }}"
echo "::group::$NAME - Outputs"
cat "$GITHUB_OUTPUT"
echo "::endgroup::"
shell: bash