]> git.r.bdr.sh - rbdr/lyricli/blame - .gitlab-ci.yml
Bumping to 1.0.0 to use semver
[rbdr/lyricli] / .gitlab-ci.yml
CommitLineData
6a628388 1image: lyriclitest/swift:5.0.1
3f746cc0
BB
2
3stages:
4 - lint
5 - build
6 - document
7 - deploy
8
9cache:
10 key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA}
11 paths:
12 - .build/
13
3f746cc0
BB
14lint:
15 stage: lint
16 script:
17 - make lint
18
19build:
20 stage: build
21 script:
22 - make build
23
24document:
25 stage: document
26 script:
27 - make document
28 artifacts:
29 paths:
30 - docs
31
32pages:
33 stage: deploy
34 script:
35 - mv docs public
36 artifacts:
37 paths:
38 - public