converter/.gitlab-ci.yml

65 lines
934 B
YAML
Raw Normal View History

2016-08-15 20:28:23 +02:00
stages:
- build
- cleanup_build
2017-03-07 04:16:22 +01:00
- deploy
# - cleanup
2016-08-15 20:28:23 +02:00
.run_deploy: &run_deploy
script:
- chmod +x ./deploy.sh
2017-03-14 00:50:14 +01:00
- ./deploy.sh
2017-03-07 04:16:22 +01:00
# dependencies:
# - build_job
2016-08-15 20:28:23 +02:00
build_job:
stage: build
script:
- npm install
- npm run build
tags:
- javascript
except:
- tags
artifacts:
paths:
- dist
expire_in: 30 min
2016-08-15 20:28:23 +02:00
cleanup_build_job:
stage: cleanup_build
script:
- rm -rf node_modules
- rm -rf dist
when: on_failure
2016-08-15 20:28:23 +02:00
2017-03-07 04:12:52 +01:00
pages:
stage: deploy
environment: staging
2017-03-07 04:12:52 +01:00
except:
- tags
- master
script:
- mv dist public
2017-03-07 04:12:52 +01:00
artifacts:
paths:
- public
dependencies:
- build_job
2016-08-15 20:28:23 +02:00
production:
stage: deploy
<<: *run_deploy
environment: production
only:
- master
variables:
ENVIRON: production
TARGET: $WWW_DEPLOY_ROOT_PRODUCTION
#cleanup_job:
# stage: cleanup
# script:
# - rm -rf node_modules
# - rm -rf typings
# when: always