-
-
Notifications
You must be signed in to change notification settings - Fork 99
56 lines (54 loc) · 1.31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-node@v2
with:
node-version: "14"
- run: npm install
- run: npm run build
- name: Compile encoder
uses: ./.github/actions/build
- name: Upload
if: github.ref == 'refs/heads/prod'
uses: actions/upload-artifact@v2
with:
name: build
path: |
dist/*.js
*.css
*.html
README.md
LICENSE
media/**
encoder/*.js
encoder/*.wasm
deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/prod'
steps:
- name: Checkout Source
uses: actions/checkout@v2
with:
ref: gh-pages
fetch-depth: 0
- name: Download
uses: actions/download-artifact@v2
with:
name: build
path: .
- name: Publish
run: |
git config --global user.name 'João Moreno'
git config --global user.email 'joaomoreno@users.noreply.github.com'
git add .
git commit -m 'publish gh-pages'
git push