We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b5d5b2 + d72d778 commit bd08c98Copy full SHA for bd08c98
1 file changed
.github/workflows/release.yml
@@ -246,4 +246,9 @@ jobs:
246
uses: dtolnay/rust-toolchain@stable
247
248
- name: Publish to crates.io
249
- run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
+ # --no-verify skips the redundant verification build that cargo publish
250
+ # performs by default. That build fails because build.rs writes
251
+ # contributors.csv into the package root (outside OUT_DIR) when the file
252
+ # is absent — which it always is inside the clean tarball sandbox.
253
+ # The binary has already been fully built and tested in the build job.
254
+ run: cargo publish --no-verify --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
0 commit comments