From 5a906f8a30bb5d7114a91426fafac6c714325907 Mon Sep 17 00:00:00 2001 From: Owen Rudge Date: Tue, 13 Jan 2026 10:28:01 +0000 Subject: [PATCH] Fix: [CI] Use the latest version of GOGGalaxyPipelineBuilder to upload releases to GOG --- .github/workflows/upload-gog.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/upload-gog.yml b/.github/workflows/upload-gog.yml index ac00aeae94..1f94cabcf3 100644 --- a/.github/workflows/upload-gog.yml +++ b/.github/workflows/upload-gog.yml @@ -46,9 +46,8 @@ jobs: - name: Install GOG Galaxy Build Creator run: | - wget https://cdn.gog.com/open/galaxy/pipeline/build_creator/gnu-linux/GOGGalaxyBuildCreator-1.4.0.AppImage - 7z x GOGGalaxyBuildCreator-1.4.0.AppImage - chmod +x ./app/GOGGalaxyPipelineBuilder + wget https://cdn.gog.com/open/galaxy/pipeline/10.6.7.17/gnu-linux/GOGGalaxyPipelineBuilder + chmod +x ./GOGGalaxyPipelineBuilder - name: Install OpenGFX shell: bash @@ -145,8 +144,8 @@ jobs: echo "::endgroup::" echo "::group::Upload to GOG" - ../app/GOGGalaxyPipelineBuilder build-game --username "${{ secrets.GOG_USERNAME }}" --password "${{ secrets.GOG_PASSWORD }}" --branch Testing windows.json - ../app/GOGGalaxyPipelineBuilder build-game --username "${{ secrets.GOG_USERNAME }}" --password "${{ secrets.GOG_PASSWORD }}" --branch Testing macos.json - ../app/GOGGalaxyPipelineBuilder build-game --username "${{ secrets.GOG_USERNAME }}" --password "${{ secrets.GOG_PASSWORD }}" --branch Testing linux.json + ../GOGGalaxyPipelineBuilder build-game --username "${{ secrets.GOG_USERNAME }}" --password "${{ secrets.GOG_PASSWORD }}" --branch Testing windows.json + ../GOGGalaxyPipelineBuilder build-game --username "${{ secrets.GOG_USERNAME }}" --password "${{ secrets.GOG_PASSWORD }}" --branch Testing macos.json + ../GOGGalaxyPipelineBuilder build-game --username "${{ secrets.GOG_USERNAME }}" --password "${{ secrets.GOG_PASSWORD }}" --branch Testing linux.json echo "::endgroup::" )