Skip to content
Snippets Groups Projects
Verified Commit 55c75966 authored by Eduardo Trujillo's avatar Eduardo Trujillo
Browse files

feat(CI): Publish library documentation

parent 23f350b6
No related branches found
No related tags found
Loading
...@@ -96,3 +96,24 @@ helm-lint: ...@@ -96,3 +96,24 @@ helm-lint:
changes: changes:
- contrib/chart/**/* - contrib/chart/**/*
script: /usr/bin/helm lint contrib/charts/espresso script: /usr/bin/helm lint contrib/charts/espresso
pages:
stage: build
image: rustlang/rust:nightly
needs:
- rust-nightly
cache:
key: "$CI_COMMIT_REF_SLUG"
paths:
- cargo/
- target/
policy: pull
<<: *rust_template
script:
- cargo doc --no-deps
- rm -rf public
- mkdir public
- cp -R target/doc/* public
artifacts:
paths:
- public
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment