stm32square/.gitlab-ci.yml
2020-11-18 13:21:38 +01:00

20 lines
346 B
YAML

stages:
- build
- release
on-schedule:
stage: build
image: python3
only:
- schedules
script:
- sh tools/do_release.sh
release:
stage: release
image: python3
script:
- pip3 install gitlab-release
- gitlab-release --zip "release-${CI_COMMIT_TAG}.zip" *
only:
- tags