We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6752c82 commit 62dbd92Copy full SHA for 62dbd92
1 file changed
.github/workflows/build_and_publish_docs.yaml
@@ -19,11 +19,13 @@ jobs:
19
uses: actions/checkout@v4
20
- name: cargo doc
21
run: cargo doc
22
+ - name: copy to gh-pages
23
+ run: cp -r ./target/doc ./gh-pages
24
- name: Save artifacts
25
uses: actions/upload-artifact@v4
26
with:
27
name: bc-rust-docs
- path: ./target/doc/
28
+ path: ./gh-pages
29
publish_to_gh_pages:
30
needs: build_docs
31
if: github.ref == 'refs/heads/main'
0 commit comments