From 3f8a63fb1bf6d99933034b7b83a6ec27645437b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerard=20Gasc=C3=B3n?= <52170489+GerardGascon@users.noreply.github.com> Date: Wed, 17 Apr 2024 21:22:22 +0200 Subject: [PATCH] upload game to itch --- .github/workflows/main.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3e940d9..7500dcf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,7 +40,8 @@ jobs: fail-fast: false # if one build fails, other platforms will still be built matrix: targetPlatform: - - StandaloneWindows64 + - os: StandaloneWindows64 + channel: win steps: # Checkout - name: Checkout repository @@ -64,15 +65,15 @@ jobs: UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} with: - targetPlatform: ${{ matrix.targetPlatform }} + targetPlatform: ${{ matrix.targetPlatform.os }} allowDirtyBuild: true - buildName: Roses-${{ matrix.targetPlatform }} + buildName: Roses # Deploy - uses: manleydev/butler-publish-itchio-action@master env: BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }} - CHANNEL: ${{ matrix.targetPlatform }} + CHANNEL: ${{ matrix.targetPlatform.channel }} ITCH_GAME: roses ITCH_USER: Geri8 - PACKAGE: build/${{ matrix.targetPlatform }} \ No newline at end of file + PACKAGE: build/${{ matrix.targetPlatform.os }} \ No newline at end of file