-
-
Notifications
You must be signed in to change notification settings - Fork 10
41 lines (41 loc) · 1.03 KB
/
build.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
name: CI
'on':
create:
tags: null
push:
branches:
- master
jobs:
build:
name: WASM Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup emscripten
uses: mymindstorm/setup-emsdk@v11
with:
version: 3.1.45
actions-cache-folder: emsdk-cache
- name: Build RGBDS
run: ./build-rgbds.sh
shell: bash
- name: Build binjgb
run: ./build-binjgb.sh
shell: bash
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install node dependencies
run: npm ci
- name: Build with Vite
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./www