Remove iframe #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to Itch.io | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Upload to Itch | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
channel: | |
- web | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
# Semantic version range syntax or exact version of a Python version | |
python-version: "3.11.x" | |
# Optional - x64 or x86 architecture, defaults to x64 | |
architecture: "x64" | |
- run: make web-pack | |
- name: set-env | |
id: env-output | |
run: bash .github/workflows/env.sh ${{ github.event_name }} | |
- uses: KikimoraGames/[email protected] | |
with: | |
butlerApiKey: ${{ secrets.BUTLER_API_KEY }} | |
gameData: tmp/build/web | |
itchUsername: ${{ env.ITCH_USERNAME }} | |
itchGameId: ${{ env.ITCH_GAME_ID }} | |
buildChannel: ${{ matrix.channel }} | |
buildNumber: ${{ env.BUILD_NUM }} |