From 258208592521e0801a6179ff33f02e413b5a40f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Wed, 3 Jan 2024 00:00:00 -0500 Subject: [PATCH] refactor(ci): update job tags --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 197d6ea..2b3d43d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,6 +9,8 @@ variables: # define the build stage build_stage: stage: build + tags: + - docker # use node docker image as enviroment image: node:latest script: @@ -25,6 +27,8 @@ build_stage: # define the deploy stages deploy_staging: stage: deploy + tags: + - docker resource_group: staging needs: - build_stage @@ -46,6 +50,8 @@ deploy_staging: - tags deploy_production: stage: deploy + tags: + - docker needs: - build_stage resource_group: production