1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-07-01 06:01:48 +02:00
portfolio/.gitlab-ci.yml
2018-04-21 12:10:42 +02:00

29 lines
463 B
YAML

cache:
paths:
- node_modules/
stages:
- build
- deploy
build:
image: node:latest
stage: build
script:
- npm i -g gatsby-cli
- export PATH="$PATH:/usr/local/bin/gatsby"
- npm i
- npm test
- npm run build
artifacts:
paths:
- public
deploy:
image: garland/aws-cli-docker:latest
stage: deploy
script:
- aws s3 sync ./public s3://beta.matthiaskretschmann.com --delete --acl public-read
only:
- master