Update .gitlab-ci.yml

This commit is contained in:
William Nolin 2021-02-12 23:59:03 -05:00
parent 61c2f63878
commit aff519537f
1 changed files with 6 additions and 6 deletions

View File

@ -11,6 +11,10 @@ stages:
- test
- package
- deploy
.only-master:
only:
- master
build:
stage: build
@ -30,9 +34,7 @@ test:
package:
stage: package
needs: [ 'test' ]
only:
refs:
- master
extends: .only-master
variables:
PACKAGE_CONTAINER_NAME: "cre_backend_package-$CI_COMMIT_REF_NAME"
ARTIFACT_NAME: "ColorRecipesExplorer-backend-$CI_PIPELINE_IID"
@ -54,9 +56,7 @@ deploy:
stage: deploy
image: alpine:latest
needs: [ 'package' ]
only:
refs:
- master
extends: .only-master
variables:
DEPLOYED_CONTAINER_NAME: "cre_backend-$CI_COMMIT_REF_NAME"
before_script: