From 5bd0129ef367cb5593959eaf2a6b564511c06528 Mon Sep 17 00:00:00 2001 From: Mindfang Date: Tue, 4 Jun 2024 09:02:46 -0500 Subject: [PATCH] Final step not processing --- .gitea/workflows/monitor.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/monitor.yaml b/.gitea/workflows/monitor.yaml index 4771e0f..ce305e0 100644 --- a/.gitea/workflows/monitor.yaml +++ b/.gitea/workflows/monitor.yaml @@ -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: |