-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 897 Bytes
/
itch.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Deploy
on:
push:
branches:
- main
workflow_dispatch:
env:
ITCH_USERNAME: Mookie4242
ITCH_GAME_ID: cellular-automata
jobs:
deploy:
name: Upload to Itch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Extract version from package.json
uses: sergeysova/jq-action@v2
id: version
with:
cmd: "jq .version package.json -r"
- uses: KikimoraGames/[email protected]
with:
butlerApiKey: ${{secrets.BUTLER_API_KEY}}
gameData: ./dist
itchUsername: ${{env.ITCH_USERNAME}}
itchGameId: ${{ env.ITCH_GAME_ID }}
buildChannel: itch_build
buildNumber: ${{ steps.version.outputs.value }}