Godot_bridge/.gitlab-ci.yml
2023-03-08 19:37:45 +01:00

21 lines
375 B
YAML

# This CI is for zipping the plugin when ready for distribution
variables:
ADDON_VERSION: "1.0.0"
stages:
- build
- deploy
build-job:
stage: build
tags:
- Docker
image: alpine
before_script:
- apk add --update zip
script:
- echo "Zipping the plugin..."
- zip -9 -r -q khanat_tools_v$ADDON_VERSION.zip *
artifacts:
paths:
- '*.zip'