aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 0896758794a5f2248ecd8d09cab53250b708cedf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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