From 759d972b6dcab10aea67fe23b63cbb5e62f214eb Mon Sep 17 00:00:00 2001 From: Minimata Date: Fri, 13 Feb 2026 19:21:44 +0100 Subject: [PATCH] removed automatic itch upload on every main run because it costs too much --- .gitea/workflows/main.yaml | 44 +++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index d58aebe6..e6edac9c 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -91,26 +91,26 @@ jobs: ${{ steps.setup-godot.outputs.godot_bin }} --headless --verbose --export-release "Windows Desktop" build/windows/${{ env.GAME_NAME }}.exe zip -r Windows.zip build/windows - - name: Setup Butler - shell: bash - env: - BUTLER_API_KEY: ${{ secrets.BUTLER_TOKEN }} - run: | - mkdir ./tools 2>/dev/null || true - pushd tools - curl -sSLfo ./butler.zip "https://broth.itch.zone/butler/linux-amd64/LATEST/archive/default" - unzip butler.zip - chmod +x ./butler - popd - ./tools/butler -V - - - name: Upload to itch.io - shell: bash - env: - BUTLER_API_KEY: ${{ secrets.BUTLER_TOKEN }} - run: | - versionArgument="--userversion ${{ needs.BumpTag.outputs.tag_name }}" - ./tools/butler push \ - "Windows.zip" \ - ${{ env.ITCHIO_USERNAME }}/${{ env.ITCHIO_GAMEID }}:windows ${versionArgument} +# - name: Setup Butler +# shell: bash +# env: +# BUTLER_API_KEY: ${{ secrets.BUTLER_TOKEN }} +# run: | +# mkdir ./tools 2>/dev/null || true +# pushd tools +# curl -sSLfo ./butler.zip "https://broth.itch.zone/butler/linux-amd64/LATEST/archive/default" +# unzip butler.zip +# chmod +x ./butler +# popd +# ./tools/butler -V +# +# - name: Upload to itch.io +# shell: bash +# env: +# BUTLER_API_KEY: ${{ secrets.BUTLER_TOKEN }} +# run: | +# versionArgument="--userversion ${{ needs.BumpTag.outputs.tag_name }}" +# ./tools/butler push \ +# "Windows.zip" \ +# ${{ env.ITCHIO_USERNAME }}/${{ env.ITCHIO_GAMEID }}:windows ${versionArgument}