From 3628e71714274b75dc452d925f5b369713739909 Mon Sep 17 00:00:00 2001 From: EthanPisani Date: Thu, 20 Feb 2025 00:45:16 -0500 Subject: [PATCH] edit itchio publish --- .gitea/workflows/build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1b27d739..5c1d0ba0 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -37,7 +37,6 @@ jobs: - name: Clean Library and Build folder run: | rm -rf Library - rm -rf build - uses: actions/cache@v4 with: @@ -123,11 +122,17 @@ jobs: - StandaloneWindows64 - StandaloneLinux64 steps: + - name: Copy build zip to current directory + run: | + ls /tmp + ls /tmp/zipped_builds + cp /tmp/zipped_builds/build_${{ matrix.targetPlatform }}.zip + - name: Publish to itch.io uses: KikimoraGames/itch-publish@v0.0.3 with: butlerApiKey: ${{ secrets.BUTLER_API_KEY }} - gameData: /tmp/zipped_builds/build_${{ matrix.targetPlatform }}.zip + gameData: ./build_${{ matrix.targetPlatform }}.zip itchUsername: ${{ env.ITCH_USERNAME }} itchGameId: ${{ env.ITCH_GAME_ID }} buildChannel: ${{ matrix.targetPlatform }}