From 31b65fd6a57dfc4368172743907c79a15c8704f3 Mon Sep 17 00:00:00 2001 From: Greenscreener Date: Fri, 19 Jul 2019 17:46:24 +0200 Subject: [PATCH] Deployments and builds now happen only on master. --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fe2bb06..f94a0d3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -35,8 +35,8 @@ build: paths: - public expire_in: 3 months -# only: - #- master + only: + - master test: stage: lint_build_test @@ -60,4 +60,6 @@ firebase-deploy: dependencies: - build script: - - firebase deploy --only hosting + - firebase deploy --only hosting + only: + - master