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 name: Get latest release version
on: on:
schedule: schedule:
- cron: "1 * * * *" - cron: "4 * * * *"
jobs: jobs:
get-version: get-version:
@@ -21,7 +21,9 @@ jobs:
echo ::set-output name=version::"$VERSION_TAG" echo ::set-output name=version::"$VERSION_TAG"
- name: Check for modified files - name: Check for modified files
id: git-check 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 - name: Commit latest release version
if: steps.git-check.outputs.modified == 'true' if: steps.git-check.outputs.modified == 'true'
run: | run: |