From f1079e2fa81540444c2a24d105da89ae59f1e10b Mon Sep 17 00:00:00 2001 From: Mindfang Date: Mon, 3 Jun 2024 22:04:00 -0500 Subject: [PATCH] Another test --- .gitea/workflows/monitor.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/monitor.yaml b/.gitea/workflows/monitor.yaml index 46ff6de..4f81cdb 100644 --- a/.gitea/workflows/monitor.yaml +++ b/.gitea/workflows/monitor.yaml @@ -1,7 +1,7 @@ name: Get latest release version on: schedule: - - cron: "0 * * * *" + - cron: "04 * * * *" jobs: get-version: runs-on: ubuntu-latest @@ -15,8 +15,9 @@ jobs: id: version-check run: | curl -sL https://api.github.com/repos/pterodactyl/panel/releases/latest | \ - jq -r ".tag_name" > "$GITEA_OUTPUT" - echo "$GITEA_OUTPUT" > release-versions/panel-latest.txt + jq -r ".tag_name" > $VERSION_TAG + echo "$VERSION_TAG" > release-versions/panel-latest.txt + echo "$PNAEL_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")