Skip to content

Commit 5172c38

Browse files
author
jannik brack
committed
Changing yml and removing a package.json configuration error
1 parent 51a7575 commit 5172c38

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,30 @@ jobs:
1111
uses: actions/[email protected]
1212
with:
1313
persist-credentials: false
14-
- name: Install and build running contest, webGis and power Plants🔧
14+
- name: Install and build running contest🔧
1515
run: | # Install packages and build the Storybook files
1616
mkdir docs-build || true
1717
cd running_contest
1818
yarn
1919
yarn build
2020
cd ..
2121
cp -r running_contest/build docs-build/running_contest
22+
- name: Install and build web gis🔧
23+
run: |
2224
cd webGis
2325
yarn
2426
CI=false yarn build
2527
cd ..
2628
cp -r webGis/build docs-build/webGis
29+
- name: Install and build power Plants🔧
30+
run: |
2731
cd powerplants
2832
yarn
2933
CI=false yarn build
3034
cd ..
3135
cp -r powerplants/build docs-build/powerplants
36+
- name: Install and build multi-tab🔧
37+
run: |
3238
cd multi_tab
3339
yarn
3440
CI=false yarn build

multi_tab/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"version": "0.0.0",
55
"type": "module",
6-
"homepage": "https://mapcomponents.github.io/react-map-components-apps/multi_tab/",
6+
"homepage": ".",
77
"scripts": {
88
"dev": "vite",
99
"build": "tsc && vite build",

0 commit comments

Comments
 (0)