Skip to content

20260223.3

20260223.3 #6

Workflow file for this run

name: "Publish to itch.io"
on:
release:
types: [published]
jobs:
release_html:
runs-on: ubuntu-latest
name: fecth from GITHUB
steps:
- name: download zip file
id: download-html
uses: dsaltares/fetch-gh-release-asset@master
with:
file: python_pygame_loader_demo.zip
env:
GITHUB_TOKEN: "${{ secrets.GH_CREDENTIALS }}"
- name: deploy to itch.io (HTML5)
uses: Oval-Tutu/publish-to-itch-with-butler@v1
env:
api-key: ${{ secrets.BUTLER_CREDENTIALS }}
itch_user: kerodekroma
itch_game: python-pygame-loader
CHANNEL: HTML
PACKAGE: python_pygame_loader_demo.zip
VERSION: ${{ steps.download-html.outputs.version }}