-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (38 loc) · 1.23 KB
/
Copy pathbuild_and_deploy.yml
File metadata and controls
38 lines (38 loc) · 1.23 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
name: Build and deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
with:
persist-credentials: false
- name: Install and build 🔧
run: | # Install packages and build the static files
mkdir docs-build || true
cd react-admin-demo
yarn
CI=false yarn build
cd ..
cp -r react-admin-demo/build docs-build/react-admin-demo
cd webgis-demo
yarn
CI=false yarn build
cd ..
cp -r webgis-demo/build docs-build/webgis-demo
- name: copy catalogue metadata
run: |
cp mc_meta.json docs-build/mc_meta.json
cp -r assets docs-build/assets
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.6.2
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