1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-06-29 05:46:59 +01:00
notes/.gitlab-ci.yml

37 lines
551 B
YAML
Raw Normal View History

2021-06-26 20:59:23 +01:00
stages:
- build
- deploy
2022-09-09 16:40:21 +01:00
build:
image: node:slim
stage: build
2021-06-03 17:11:36 +01:00
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .npm
2021-06-03 17:11:36 +01:00
- .cache
before_script:
- npm ci --cache .npm --prefer-offline
script:
2021-06-02 23:58:17 +01:00
- npm run build
- npm run prettier
artifacts:
2022-09-09 17:11:51 +01:00
name: "$CI_JOB_ID"
paths:
- ./public
expire_in: 30 mins
2022-10-09 18:02:34 +01:00
pages:
image: alpine:latest
stage: deploy
only:
- master
environment:
name: notes
url: https://notes.theorangeone.net
2021-06-26 20:59:23 +01:00
script:
2022-10-09 18:02:34 +01:00
- "true"
artifacts:
paths:
- public