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