Skip to content

Merge branch 'master' of https://github.com/bitDecayGames/GMTK2024 in… #12

Merge branch 'master' of https://github.com/bitDecayGames/GMTK2024 in…

Merge branch 'master' of https://github.com/bitDecayGames/GMTK2024 in… #12

Workflow file for this run

name: AutoDeploy-Prod
on:
release:
types:
- published
jobs:
publish-html5-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Make html5 build
uses: bitDecayGames/[email protected]
with:
buildArgs: -final -D API_KEY=${{ secrets.ANALYTICS_TOKEN }}
initScriptFile: ./bin/init_deps.sh
- name: Upload html5 zip artifact
uses: actions/upload-artifact@v2
with:
name: html5-build
path: export/html5.zip
retention-days: 7
- name: Publish html5 build to itch.io
uses: bitDecayGames/[email protected]
with:
dir: export/html5.zip
itchUserName: bitdecaygames
itchGameName: ::game_name::

Check failure on line 31 in .github/workflows/prod-deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/prod-deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 31
itchChannel: web-release
butlerApiKey: ${{ secrets.BUTLER_API_KEY }}