-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (44 loc) · 1.12 KB
/
GithubPagesDeploy.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
name: Github Pages Deploy
on:
push:
branches:
- master
- "V2-Phaser-Game"
- "PDF"
pull_request:
branches:
- master
- "V2-Phaser-Game"
- "PDF"
jobs:
build:
runs-on: ubuntu-latest
steps:
# ------- V2-Phaser-Game --------
- name: Checkout the `V2-Phaser-Game` branch
uses: actions/checkout@v2
with:
ref: V2-Phaser-Game
clean: false
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: 20
- name: Install npm dependencies
run: npm ci
- name: Build # Output build files in `dist` folder
run: npm run build
# ------- PDF --------
- name: Checkout the `PDF` branch
uses: actions/checkout@v2
with:
ref: PDF
# Put the checked out files inside the `dist/PDF` folder
path: dist/PDF
clean: false
# ------- gh-pages (deploy) --------
- name: Deploy in gh-pages
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
folder: dist