slides.fleaz.me/.gitlab-ci.yml
Felix Breidenstein fb398afd8b first commit
2019-11-05 00:33:07 +01:00

32 lines
500 B
YAML

cache:
untracked: true
paths:
- node_modules/
stages:
- build
- deploy
build:
stage: build
image: golang:1.12
script:
- go run main.go
- mkdir dist
- mv index.html dist/
- mv previews/ dist/
- mv talks/ dist/
artifacts:
paths:
- dist
deploy:
stage: deploy
image: node:12-alpine
script:
- npm i -g netlify-cli
- netlify deploy --site $NETLIFY_SITE_ID --auth $NETLIFY_AUTH_TOKEN --prod
dependencies:
- build
only:
- master