ci: Add proper tag for runner
This commit is contained in:
parent
de36a45c80
commit
6e023508d7
1 changed files with 6 additions and 6 deletions
|
@ -1,16 +1,16 @@
|
|||
# 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 ..
|
||||
|
|
Loading…
Reference in a new issue