From 68e4dcbe8dfa7fdce9fe601b3026a7cda9deebd8 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Thu, 13 Mar 2025 14:01:46 +0100 Subject: [PATCH] WF --- .github/workflows/get-versions-from-newreleases.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/get-versions-from-newreleases.yaml b/.github/workflows/get-versions-from-newreleases.yaml index ba63d8e..e6682ad 100644 --- a/.github/workflows/get-versions-from-newreleases.yaml +++ b/.github/workflows/get-versions-from-newreleases.yaml @@ -11,6 +11,12 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout Repository + uses: actions/checkout@v2 + with: + repository: community-scripts/ProxmoxVED + ref: main + - name: Crawl from newreleases.io env: token: ${{ secrets.NEWRELEASES_TOKEN }} @@ -25,14 +31,8 @@ jobs: echo "Project Name: $name, Project ID: $id, Version: $version" jq -n --arg name "$name" --arg version "$version" '{name: $name, version: $version}' > json/versions.json - done - - name: Checkout Repository - uses: actions/checkout@v2 - with: - repository: community-scripts/ProxmoxVED - ref: main - name: Commit JSON run: | git config --global user.email "Github Actions[bot]"