Skip to content

20240512.1

20240512.1 #5

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: pysinglslider_demo.zip
env:
GITHUB_TOKEN: "${{ secrets.GH_CREDENTIALS }}"
- name: deploy to itch.io (HTML5)
uses: josephbmanley/butler-publish-itchio-action@master
env:
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
CHANNEL: HTML
ITCH_GAME: py-single-slider
ITCH_USER: kerodekroma
PACKAGE: pysinglslider_demo.zip
VERSION: ${{ steps.download-html.outputs.version }}