1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-03 09:13:54 +01:00
notes/.gitlab-ci.yml

26 lines
468 B
YAML
Raw Normal View History

static:
image: node:alpine
stage: build
before_script:
- yarn install --cache-folder .yarn --prefer-offline --production --network-timeout 100000
script:
2021-06-02 23:58:17 +01:00
- npm run build
artifacts:
name: '$CI_JOB_ID'
paths:
- ./public
expire_in: 30 mins
deploy:
image: alpine
stage: deploy
dependencies:
- static
only:
- master
environment:
name: notes
url: https://notes.theorangeone.net
script:
- ls -alh ./public