-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (54 loc) · 1.67 KB
/
build_and_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
name: Build and deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Install and build running contest🔧
run: | # Install packages and build the Storybook files
mkdir docs-build || true
cd running_contest
yarn
yarn build
cd ..
cp -r running_contest/build docs-build/running_contest
- name: Install and build web gis🔧
run: |
cd webGis
yarn
CI=false yarn build
cd ..
cp -r webGis/build docs-build/webGis
- name: Install and build power Plants🔧
run: |
cd powerplants
yarn
CI=false yarn build
cd ..
cp -r powerplants/build docs-build/powerplants
- name: Install and build multi-tab🔧
run: |
cd multi_tab
yarn
CI=false yarn build
cd ..
cp -r multi_tab/dist docs-build/multi_tab
- name: copy catalogue metadata
run: |
cp mc_meta.json docs-build/mc_meta.json
cp -r assets docs-build/assets
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: main # branch the action should deploy to.
FOLDER: docs-build # folder containing the build
CLEAN: true # Automatically remove deleted files from the deploy branch
TARGET_FOLDER: docs # The folder that we serve our Storybook files from