From eb57519506a40ffc0aa1efc58cee1d0e91880c74 Mon Sep 17 00:00:00 2001 From: Manuel Raimann Date: Fri, 30 Jan 2026 19:23:32 +0100 Subject: [PATCH] feat: allow publishing with dirty workspace in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c02dfc2..04a5f44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -277,7 +277,7 @@ jobs: - name: Publish if: steps.check.outputs.skip == 'false' run: | - cargo publish 2>&1 | tee publish_output.txt || { + cargo publish --allow-dirty 2>&1 | tee publish_output.txt || { if grep -q "already uploaded" publish_output.txt; then echo "Version already published, skipping" exit 0