1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-06-26 12:37:02 +01:00
notes/.gitlab-ci.yml

37 lines
551 B
YAML

stages:
- build
- deploy
build:
image: node:slim
stage: build
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .npm
- .cache
before_script:
- npm ci --cache .npm --prefer-offline
script:
- npm run build
- npm run prettier
artifacts:
name: "$CI_JOB_ID"
paths:
- ./public
expire_in: 30 mins
pages:
image: alpine:latest
stage: deploy
only:
- master
environment:
name: notes
url: https://notes.theorangeone.net
script:
- "true"
artifacts:
paths:
- public