-
-
Notifications
You must be signed in to change notification settings - Fork 137
45 lines (37 loc) · 999 Bytes
/
pages.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
name: GitHub build pages
on:
push:
branches:
- master
- obs-websocket-4
jobs:
deploy:
name: Build and deploy GH pages
runs-on: ubuntu-latest
steps:
- name: Checkout v4
uses: actions/checkout@v4
with:
ref: obs-websocket-4
path: v4
- name: Checkout v5 (master)
uses: actions/checkout@v4
with:
ref: master
path: v5
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Build v4
run: cd v4 && npm ci && npm run build
- name: Build v5
run: cd v5 && npm ci && npm run lint && npm run build
- name: Make a single folder with v4 and v5
run: cp -r v5/public . && cp -r v4/public public/v4
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
cname: obs-web.niek.tv