From 36b65c8510396cb5c677bcc95b4300c83399dfb0 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 20:38:36 +0200 Subject: [PATCH] try upload game to itch --- .github/workflows/main.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 736dd33..8e956f7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,9 +59,23 @@ jobs: with: targetPlatform: StandaloneWindows64 allowDirtyBuild: true + buildName: Roses # Output - uses: actions/upload-artifact@v3 with: name: Build - path: build \ No newline at end of file + path: build + + deploy: + name: Deploy my project + needs: [build, test] + runs-on: ubuntu-latest + steps: + - uses: manleydev/butler-publish-itchio-action@master + env: + BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }} + CHANNEL: ${{ targetPlatform }} + ITCH_GAME: roses + ITCH_USER: Geri8 + PACKAGE: build/ \ No newline at end of file