-
Notifications
You must be signed in to change notification settings - Fork 34
58 lines (48 loc) · 1.47 KB
/
deploy.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
57
58
name: Deploy GH Pages
on:
push:
tags:
- '@caravan/coordinator**'
branches:
- main
permissions:
contents: write
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
env:
GITHUB_PAGES: true
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Cache Dependencies ...
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install wasm-pack
uses: jetli/[email protected]
with:
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
version: 'latest'
- name: Install dependencies
run: npm install
# the deploy action can't find the build directory if it's in the
# sub directory of the monorepo, even if we reference it correctly
# so we have to copy it to the root of the repo.
- name: Build
# forcing a build to avoid the cache. Probably unnecessary
# but useful in case any environment variables change that might
# impact the build
run: npx turbo run build --force
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: apps/coordinator/build