We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99ac6b3 commit ce9b186Copy full SHA for ce9b186
.gitlab-ci.yml
@@ -9,6 +9,7 @@ stages:
9
- signstaros
10
- publish
11
- report
12
+ - pages
13
14
check-commits:
15
before_script:
@@ -148,3 +149,19 @@ issue-bot:
148
149
rules:
150
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
151
when: on_failure
152
+
153
+pages:
154
+ before_script:
155
+ - pacman-key --init
156
+ - pacman -Sy --needed --noconfirm archlinux-keyring
157
+ - source .env && pacman -Syu --needed --noconfirm $PACMAN_PACKAGES
158
+ - just install-rust-dev-tools
159
+ stage: pages
160
+ script:
161
+ - just docs
162
+ artifacts:
163
+ paths:
164
+ - target/doc
165
+ publish: target/doc
166
+ rules:
167
+ - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
0 commit comments