Final step not processing
All checks were successful
Get latest release version / get-version (push) Successful in 7s

This commit is contained in:
2024-06-04 09:02:46 -05:00
parent aec1fb3dfa
commit 5bd0129ef3

View File

@@ -1,7 +1,7 @@
name: Get latest release version
on:
schedule:
- cron: "1 * * * *"
- cron: "4 * * * *"
jobs:
get-version:
@@ -21,7 +21,9 @@ jobs:
echo ::set-output name=version::"$VERSION_TAG"
- name: Check for modified files
id: git-check
run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
run: |
echo "Version tag: ${{ steps.version-check.outputs.version }}"
echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
- name: Commit latest release version
if: steps.git-check.outputs.modified == 'true'
run: |