-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (49 loc) · 1.6 KB
/
deploy.yaml
File metadata and controls
58 lines (49 loc) · 1.6 KB
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
name: Deploy LiaScript Test Website
on:
repository_dispatch:
types: [trigger-build]
permissions:
contents: write
pages: write
id-token: write
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Remove existing LiaScript directory
run: rm -rf LiaScript
- name: Download LiaScript test branch
run: git clone --branch test https://github.com/LiaScript/LiaScript.git
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Set ELM_HOME
run: echo "ELM_HOME=${GITHUB_WORKSPACE}/.elm" >> $GITHUB_ENV
# build LiaScript
- name: LiaScript - prebuild
run: |
cd LiaScript
npm install
npm run prebuild
- name: LiaScript - patches
run: |
cd LiaScript
git submodule update --init --recursive
cd patches
make
cd ..
rm -rf elm-stuff .parcel-cache
- name: LiaScript - build
run: |
cd LiaScript
make all2 KEY="${{ secrets.RESPONSIVEVOICE_KEY }}"
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./LiaScript/dist
publish_branch: gh-pages