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 5a8f9a0 commit ceb0d38Copy full SHA for ceb0d38
.github/workflows/docs.yaml
@@ -0,0 +1,19 @@
1
+name: docs
2
+on:
3
+ push:
4
+ branches: [main]
5
+ workflow_dispatch:
6
+
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: dtolnay/rust-toolchain@stable
13
+ - run: cargo doc --no-deps --all-features
14
+ - name: Deploy to gh-pages
15
+ uses: peaceiris/actions-gh-pages@v4
16
+ with:
17
+ publish_branch: gh-pages
18
+ publish_dir: ./target/doc
19
+ force_orphan: true
.gitignore
@@ -1,4 +1,4 @@
/target
archive/
memos/
-.*/
+.vscode/
0 commit comments