Skip to content

Update ReadMe

Update ReadMe #39

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master", "itchio-integration" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
platform:
- html5
steps:
- uses: actions/checkout@v2
- uses: chickensoft-games/[email protected]
with:
version: 4.3.0-beta3
include-templates: true
use-dotnet: false
- name: Web Build
run: |
mkdir -p build/${{ matrix.platform }}
godot -v --export-release "${{ matrix.platform }}" --headless
- uses: KikimoraGames/[email protected]
with:
butlerApiKey: ${{secrets.BUTLER_API_KEY}}
gameData: ./build/${{ matrix.platform }}
itchUsername: ${{ vars.ITCH_USERNAME }}
itchGameId: ${{ vars.ITCH_GAME_ID }}
buildChannel: ${{ matrix.platform }}