Godot_bridge/.gitlab-ci.yml

21 lines
377 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'