1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-08-08 22:36:41 +02:00

gitlab ci fix empty env name

This commit is contained in:
Lee Brown
2019-07-14 13:05:03 -08:00
parent 3c495e81a5
commit e31991efc8

View File

@ -99,7 +99,6 @@ cache:
tags:
- dev
variables:
name: 'dev/${SERVICE}-dev'
TARGET_ENV: 'dev'
SERVICE: 'web-api'
ENABLE_HTTPS: 1
@ -115,6 +114,7 @@ webapi:build:dev:
<<: *deploy_dev_webapi_tmpl
stage: build:dev
environment:
name: '${TARGET_ENV}/${SERVICE}-${TARGET_ENV}'
NO_BUILD: 'false'
only:
- master
@ -124,6 +124,7 @@ webapi:deploy:dev:
<<: *deploy_dev_webapi_tmpl
stage: deploy:dev
environment:
name: '${TARGET_ENV}/${SERVICE}-${TARGET_ENV}'
NO_DEPLOY: 'false'
dependencies:
- 'webapi:build:dev'