From 6e023508d7f1798349e758656134351f696e8f42 Mon Sep 17 00:00:00 2001 From: yannk Date: Wed, 8 Mar 2023 16:41:48 +0100 Subject: [PATCH] ci: Add proper tag for runner --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6169d32..d035118 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,19 +1,19 @@ # This CI is for zipping the plugin when ready for distribution -image: alpine - stages: - build - deploy -before_script: - - apk add --update zip - build-job: stage: build + tags: + - Docker + image: alpine + before_script: + - apk add --update zip script: - echo "Zipping the plugin..." - for d in */ ; do cd $d; zip -r ../${d%/}.zip *; cd .. artifacts: paths: - - '*.zip' + - '*.zip' \ No newline at end of file