mirror of
https://github.com/RealOrangeOne/notes.git
synced 2024-11-16 19:39:24 +00:00
Jake Howard
62baca6e51
I hate it, it's nasty, but it actually works. Until https://github.com/mrmartineau/gatsby-theme-code-notes/issues/65 is fixed, it's the best I can do
19 lines
279 B
YAML
19 lines
279 B
YAML
image: "node:lts-slim"
|
|
|
|
cache:
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
paths:
|
|
- node_modules/
|
|
- .yarn
|
|
- .cache
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- yarn install --prefer-offline --production
|
|
- npm run release
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|