From 21df4b47b06410da32146c6022c490ea3960e112 Mon Sep 17 00:00:00 2001 From: Mindfang Date: Tue, 4 Jun 2024 08:35:50 -0500 Subject: [PATCH] Test using environment variable --- .gitea/workflows/monitor.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/monitor.yaml b/.gitea/workflows/monitor.yaml index 7a85059..6422289 100644 --- a/.gitea/workflows/monitor.yaml +++ b/.gitea/workflows/monitor.yaml @@ -1,7 +1,11 @@ name: Get latest release version on: schedule: - - cron: "30 * * * *" + - cron: "40 * * * *" + +env: + VERSION_TAG: "" + jobs: get-version: runs-on: ubuntu-latest @@ -14,17 +18,18 @@ jobs: - name: Fetch release version id: version-check run: | - GITHUB_OUTPUT="VERSION_TAG=$(curl -sL https://api.github.com/repos/pterodactyl/panel/releases/latest | jq -r .tag_name)" - echo "$GITHUB_OUTPUT" - echo "$GITHUB_OUTPUT" > release-versions/panel-latest.txt + VERSION_TAG=$(curl -sL https://api.github.com/repos/pterodactyl/panel/releases/latest | jq -r .tag_name) + echo "$VERSION_TAG" + echo "$VERSION_TAG" > release-versions/panel-latest.txt - name: Check for modified files id: git-check run: 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' + needs: version-check run: | - echo "${{ steps.version-check.outputs.VERSION_TAG }}" + echo "$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 }}" + git commit -am "Trigger new release autobuild for $VERSION_TAG" git push