Godot_bridge/.gitlab-ci.yml

19 lines
344 B
YAML
Raw Normal View History

2023-03-08 13:02:09 +00:00
# This CI is for zipping the plugin when ready for distribution
stages:
- build
- deploy
build-job:
stage: build
2023-03-08 15:41:48 +00:00
tags:
- Docker
image: alpine
before_script:
- apk add --update zip
2023-03-08 13:02:09 +00:00
script:
- echo "Zipping the plugin..."
- for d in */ ; do cd $d; zip -r ../${d%/}.zip *; cd ..
artifacts:
paths:
2023-03-08 15:41:48 +00:00
- '*.zip'