From a07f353554a52b05833b11849478269faa349d40 Mon Sep 17 00:00:00 2001 From: Mindfang Date: Mon, 3 Jun 2024 22:29:32 -0500 Subject: [PATCH] Try with the right step name --- .gitea/workflows/monitor.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/monitor.yaml b/.gitea/workflows/monitor.yaml index 5f66211..7a85059 100644 --- a/.gitea/workflows/monitor.yaml +++ b/.gitea/workflows/monitor.yaml @@ -1,7 +1,7 @@ name: Get latest release version on: schedule: - - cron: "27 * * * *" + - cron: "30 * * * *" jobs: get-version: runs-on: ubuntu-latest @@ -23,7 +23,7 @@ jobs: - name: Commit latest release version if: steps.git-check.outputs.modified == 'true' run: | - echo "${{ steps.vars.outputs.VERSION_TAG }}" + echo "${{ steps.version-check.outputs.VERSION_TAG }}" git config --global user.name 'Mindfang' git config --global user.email 'mindfang@taco.quest' git commit -am "Trigger new release autobuild for ${{ steps.vars.outputs.VERSION_TAG }}"