diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-08 16:23:39 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-08 16:23:39 +0200 |
commit | 084fe34b3d966ef8983977e5515c82d2b5721579 (patch) | |
tree | b306110862c1356c20753cc359a17921898e7813 /.github | |
parent | 8769c3b1c10590d9701c262a6a078199c410538f (diff) | |
download | markdown-rs-084fe34b3d966ef8983977e5515c82d2b5721579.tar.gz markdown-rs-084fe34b3d966ef8983977e5515c82d2b5721579.tar.bz2 markdown-rs-084fe34b3d966ef8983977e5515c82d2b5721579.zip |
Fix root of site
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 094a15e..f3ab672 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,12 +29,12 @@ jobs: - run: cargo test # - run: cargo install cargo-tarpaulin && cargo tarpaulin --out Xml # - uses: codecov/codecov-action@v1 - - run: cargo doc --document-private-items + - run: cargo doc --document-private-items --no-deps --release - name: Deploy uses: JamesIves/github-pages-deploy-action@v4.3.3 with: branch: gh-pages - folder: target/doc/micromark + folder: target/doc single-commit: true commit-message: . git-config-name: Titus Wormer |