From 04cec072e38fa114375075e1882d9aec381fb4b7 Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Tue, 5 Jun 2018 07:18:41 -0400 Subject: [PATCH] Tagging pipeline steps to use shared runners --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 46930e5..84b3554 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,6 +18,8 @@ test: - reports/ script: yarn test + tags: + - shared build: stage: build @@ -26,6 +28,8 @@ build: - build/ script: - yarn build + tags: + - shared deploy_preview: stage: deploy @@ -42,6 +46,8 @@ deploy_preview: - yarn deploy only: - react # TODO: Change to master once merged + tags: + - shared deploy_production: stage: deploy @@ -52,3 +58,5 @@ deploy_production: - yarn deploy only: - tags + tags: + - shared