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 }}