From 7c899ddf692943f98f66f28cfeb1550536261109 Mon Sep 17 00:00:00 2001 From: Mindfang Date: Mon, 3 Jun 2024 21:33:44 -0500 Subject: [PATCH] Install jq --- .gitea/workflows/monitor.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/monitor.yaml b/.gitea/workflows/monitor.yaml index a2e765a..9267084 100644 --- a/.gitea/workflows/monitor.yaml +++ b/.gitea/workflows/monitor.yaml @@ -1,7 +1,7 @@ name: Get latest release version on: schedule: - - cron: "30 21 * * *" + - cron: "35 21 * * *" jobs: get-version: runs-on: ubuntu-latest @@ -11,6 +11,7 @@ jobs: token: ${{ secrets.REPO_MOD_TOKEN }} - name: Fetch release version run: | + apt-get install jq | \ curl -sL https://api.github.com/repos/pterodactyl/panel/releases/latest | \ jq -r ".tag_name" > release-versions/panel-latest.txt - name: Check for modified files