diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-23 00:42:49 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-23 00:42:49 +0800 |
| commit | 55098f71bd3314531cef2b68bd209a4746476b06 (patch) | |
| tree | 9ed1e8a3cdeeefdb7a3dc4a29edc7845d79057a3 | |
| parent | fc5cd8341e1dbe0c5c65a10813a9392cb1cd35b4 (diff) | |
feat(ci): clean .temp directory before building API docs
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 563e8e1..5b861c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,6 +85,9 @@ jobs: - name: Install nightly toolchain run: rustup toolchain install nightly + - name: Delete .temp directory before deployment + run: rm -rf .temp + - name: Build API docs run: cargo +nightly run --manifest-path .run/Cargo.toml --bin deploy-api-docs -- --docsrs |
