Skip to content
Snippets Groups Projects
Commit fc584749 authored by Moul's avatar Moul
Browse files

Introduce GitLab CI config for Pages

Build and publish at every commit on master branch
parent a9bac779
No related branches found
No related tags found
No related merge requests found
Pipeline #18536 failed
stages:
- build
- publish
generate:
image: node:16-bullseye-slim
stage: build
script:
- yarn install
- yarn generate
artifacts:
paths:
- dist
expire_in: 1 week
rules:
- if: $CI_COMMIT_BRANCH == "master"
pages:
stage: publish
needs: ["generate"]
script:
- ls dist
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