stm32square/.gitlab-ci.yml
2020-11-18 14:26:07 +01:00

24 lines
454 B
YAML

stages:
- build
- release
on-schedule:
stage: build
image: python:3
only:
- schedules
script:
- pip3 install requests beautifulsoup4
- sh tools/do_release.sh
release:
stage: release
image: python:3
script:
- pip3 install gitlab-release
- gitlab-release --zip "release-${CI_COMMIT_TAG}.zip" *
only:
- tags
- /^v-nightly-.*$/
except:
- schedules