diff options
| author | System administrator <root@schneefux.xyz> | 2019-09-27 09:25:24 +0200 |
|---|---|---|
| committer | System administrator <root@schneefux.xyz> | 2019-09-27 09:25:24 +0200 |
| commit | fd296ec018cd69a0a09362518a190e97bc653b87 (patch) | |
| tree | 26798a31ebff4e9aff55ad6e2c94e12b158b12bc | |
| parent | 353c6cf0897c73a4ad01712099825a0d40a37d8c (diff) | |
| download | deleteme-fd296ec018cd69a0a09362518a190e97bc653b87.tar.gz deleteme-fd296ec018cd69a0a09362518a190e97bc653b87.zip | |
Add deployment url
| -rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6271039..2b2bedd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,9 +2,21 @@ cache: paths: - node_modules/ +stages: + - build + - deploy + build: stage: build image: node:12 script: - npm install - npm run start + +deploy_prod: + stage: deploy + script: + - echo "Deploying to production!" + environment: + name: prod + url: https://spluseins.de |
