Merge pull request #25 from mapcomponents/Add-MultiTab #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 webGis🔧 | |
run: | # Install packages and build the Storybook files | |
cd webGis | |
yarn | |
CI=false yarn build | |
cd .. | |
cp -r webGis/build docs-build/webGis | |
- name: Install and build power plants🔧 | |
run: | # Install packages and build the Storybook files | |
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/ | |
- name: copy catalogue metadata | |
run: | # Install packages and build the Storybook files | |
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 |