From 59031a87114df577b3155d8b853af2428ae1978a Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Wed, 23 Oct 2024 17:07:10 +0100 Subject: [PATCH] use BUILD_SCRIPT_URL_18 in build --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6ded8d7b74..f74e9cfcae 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -38,14 +38,14 @@ jobs: - name: Retrieval of Builder Scripts run: | # Real Grav URL - curl --silent -H "Authorization: token ${{ secrets.GLOBAL_TOKEN }}" -H "Accept: application/vnd.github.v3.raw" ${{ secrets.BUILD_SCRIPT_URL }} --output build-grav-18.sh + curl --silent -H "Authorization: token ${{ secrets.GLOBAL_TOKEN }}" -H "Accept: application/vnd.github.v3.raw" ${{ secrets.BUILD_SCRIPT_URL_18 }} --output build-grav.sh # Development Local URL - # curl ${{ secrets.BUILD_SCRIPT_URL }} --output build-grav-18.sh + # curl ${{ secrets.BUILD_SCRIPT_URL_18 }} --output build-grav.sh - name: Grav Builder run: | - bash ./build-grav-18.sh + bash ./build-grav.sh - name: Upload packages to release uses: svenstaro/upload-release-action@v2