Update version-checks.yml

This commit is contained in:
André Germann
2023-12-01 19:41:50 +01:00
committed by GitHub
parent 3ca8dcde8a
commit 7e2601b48f

View File

@@ -49,7 +49,7 @@ jobs:
- name: Check for modified files
id: git-check
run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
run: echo "modified=$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")" >> $GITHUB_OUTPUT
- name: Commit latest release version
if: steps.git-check.outputs.modified == 'true'