generated from Chocobois/choco-jam-template
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (64 loc) · 2.03 KB
/
deploy.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Deploy
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install && sudo apt install genisoimage
- name: Load game.config.json
uses: antifree/[email protected]
with:
filename: 'game.config.json'
prefix: game
- name: Build project
run: npm run build
- name: Load meta.json
uses: antifree/[email protected]
with:
filename: 'dist/meta.json'
prefix: meta
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/web
- name: Create release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "${{ env.game_title }} latest build"
files: |
./dist/${{ env.meta_title }}-web.zip
./dist/${{ env.meta_title }}-win.zip
./dist/${{ env.meta_title }}-mac.dmg
./dist/${{ env.meta_title }}-linux.zip
- name: Upload to Itch
if: ${{env.game_itch_upload == 'true'}}
uses: Ayowel/[email protected]
with:
butler_key: ${{ secrets.BUTLER_CREDENTIALS }}
itch_user: ${{ env.game_itch_username }}
itch_game: ${{ env.game_itch_game }}
files: |
./dist/${{ env.meta_title }}-web.zip
./dist/${{ env.meta_title }}-win.zip
./dist/${{ env.meta_title }}-mac.dmg
./dist/${{ env.meta_title }}-linux.zip
auto_channel: true
butler_version: "latest"
check_signature: false