Added descriptions for Sample Applications, changed "Dashboard"- Butt… #54
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, webGis and power Plants🔧 | |
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 | |
cd webGis | |
yarn | |
CI=false yarn build | |
cd .. | |
cp -r webGis/build docs-build/webGis | |
cd powerplants | |
yarn | |
CI=false yarn build | |
cd .. | |
cp -r powerplants/build docs-build/powerplants | |
- 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 |