diff options
author | jaseg <git@jaseg.de> | 2022-02-06 21:17:57 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-02-06 21:17:57 +0100 |
commit | fc0779c4f8173b501689602a0a786a66f2e67df9 (patch) | |
tree | b7abb67c099dd2e81d3683221773f4344f70bc66 | |
parent | e03d71ef150c131886990c3bc63c13c175d10f2e (diff) | |
download | gerbonara-fc0779c4f8173b501689602a0a786a66f2e67df9.tar.gz gerbonara-fc0779c4f8173b501689602a0a786a66f2e67df9.tar.bz2 gerbonara-fc0779c4f8173b501689602a0a786a66f2e67df9.zip |
CI: WIPv0.9.5
-rw-r--r-- | .gitlab-ci.yml | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 003181e..adf830a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,7 +38,6 @@ docs:archlinux: stage: test image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest" script: - - pip3 install --user sphinx - ~/.local/bin/sphinx-build -E docs docs/_build dependencies: - build:archlinux @@ -54,7 +53,6 @@ publish:gerbonara: image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest" cache: {} script: - - pip install -U --user twine - export TWINE_USERNAME TWINE_PASSWORD - ~/.local/bin/twine upload dist/* dependencies: @@ -62,3 +60,18 @@ publish:gerbonara: only: - /^v.*$/ +pages: + stage: publish + variables: + GIT_SUBMODULE_STRATEGY: none + image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest" + script: + - ~/.local/bin/sphinx-build -E docs docs/_build + dependencies: + - build:archlinux + artifacts: + paths: + - docs/_build + only: + - /^v.*$/ + |