Skip to content
Snippets Groups Projects
Commit 95d93e77 authored by Mathias Goebel's avatar Mathias Goebel :reminder_ribbon:
Browse files

feat: add build with base path for backend

parent 1e38a819
No related branches found
No related tags found
1 merge request!28feat: add build with base path for backend
Pipeline #214178 failed
......@@ -4,9 +4,13 @@
# Since our environments always have their respective branch name in the URL,
# the base path has to be adjusted to that. Otherwise the files of the environment
# will not be found.
# To prepare an artifact the backend pipeline will collect, we set a specific
# base path.
if [[ $1 == "main" ]]; then
sed -i "s|base:\s*'/'|base: '/ahiqar/website/'|" src/.vuepress/config.js
else if [[ $1 == "backend" ]]; then
sed -i "s|base:\s*'/'|base: '/website/'|" src/.vuepress/config.js
else
sed -i "s|base:\s*'/'|base: '/ahiqar/website/$1/'|" src/.vuepress/config.js
fi
\ No newline at end of file
......@@ -28,6 +28,19 @@ build_page:
paths:
- src/.vuepress/dist
# this job creates a build to be included in the back end.
build_page-backend:
image: node:lts-alpine3.10
stage: build
script:
- ash .ci-scripts/set-path-base.sh backend
- npm i
- node_modules/.bin/vuepress build src
artifacts:
paths:
- src/.vuepress/dist
# this stage creates a new environment for the current branch.
pages:
image: docker.gitlab.gwdg.de/mrodzis/docker-images/alpine
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment