From e2be6a728df5f2c474bf4dcaa3cac75b0098484d Mon Sep 17 00:00:00 2001 From: Dynamitos Date: Wed, 10 Jun 2026 12:13:38 +0200 Subject: [PATCH] using itch io butler --- .github/workflows/deploy.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3371f99..c5eb43c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -32,10 +32,10 @@ jobs: mkdir -p $GITHUB_WORKSPACE/web-dist renpy-launcher web_build $GITHUB_WORKSPACE --destination $GITHUB_WORKSPACE/web-dist - - name: Deploy to Gitea Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./web-dist - publish_branch: pages - force_orphan: true \ No newline at end of file + - name: Deploy to Itch.io via Butler + run: | + curl -L https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default -o butler.zip + unzip butler.zip + ./butler push $GITHUB_WORKSPACE/web-dist your-itch-username/your-game-slug:html5 + env: + BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }} \ No newline at end of file