From 53aff90c9dec92538b1e6487ec144ed3a5d265f9 Mon Sep 17 00:00:00 2001 From: nashaofu Date: Sat, 30 Mar 2024 15:26:41 +0800 Subject: [PATCH] chore: fix publish error (#120) --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f182df5..f676aec 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -66,7 +66,9 @@ jobs: - name: Publish env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} - run: cargo publish + run: |- + cargo clean + cargo publish - name: Release drafter uses: release-drafter/release-drafter@v5