From ec9f27d722c7939fa7cc619e7dcb0dd7ba3f0633 Mon Sep 17 00:00:00 2001 From: Mindfang Date: Mon, 3 Jun 2024 22:25:45 -0500 Subject: [PATCH] Print values to logs --- .gitea/workflows/monitor.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/monitor.yaml b/.gitea/workflows/monitor.yaml index b3aa31f..5f66211 100644 --- a/.gitea/workflows/monitor.yaml +++ b/.gitea/workflows/monitor.yaml @@ -1,7 +1,7 @@ name: Get latest release version on: schedule: - - cron: "23 * * * *" + - cron: "27 * * * *" jobs: get-version: runs-on: ubuntu-latest @@ -15,6 +15,7 @@ jobs: 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 - name: Check for modified files id: git-check @@ -22,6 +23,7 @@ jobs: - name: Commit latest release version if: steps.git-check.outputs.modified == 'true' run: | + echo "${{ steps.vars.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 }}"