Godot_bridge/.gitlab-ci.yml
2023-03-08 16:41:48 +01:00

19 lines
No EOL
344 B
YAML

# This CI is for zipping the plugin when ready for distribution
stages:
- build
- deploy
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'