diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a1acc3c..6d7d295 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -34,12 +34,13 @@ jobs: use-dotnet: false - name: Web Build run: | - mkdir -v -p build/web - godot -v --export-release "html5" --headless - # - uses: KikimoraGames/itch-publish@v0.0.3 - # with: - # butlerApiKey: ${{secrets.BUTLER_API_KEY}} - # gameData: ./build/${{ matrix.platform }} - # itchUsername: ${{env.ITCH_USERNAME}} - # itchGameId: ${{ env.ITCH_GAME_ID }} - # buildChannel: ${{ matrix.platform }} \ No newline at end of file + mkdir -p build/${{ matrix.platform }} + godot -v --export-release "${{ matrix.platform }}" --headless + zip -r build/build_${{ matrix.platform }}.zip build/${{ matrix.platform }} + - uses: KikimoraGames/itch-publish@v0.0.3 + with: + butlerApiKey: ${{secrets.BUTLER_API_KEY}} + gameData: ./build/${{ matrix.platform }} + itchUsername: ${{env.ITCH_USERNAME}} + itchGameId: ${{ env.ITCH_GAME_ID }} + buildChannel: ${{ matrix.platform }} \ No newline at end of file