Use `--no-verify` to skip builds during crates.io publish (#16863)

Otherwise, this is quite slow.
This commit is contained in:
Zanie Blue 2025-11-26 10:34:30 -06:00 committed by GitHub
parent fa6afd5a71
commit 76d769d7a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ jobs:
# - uses: rust-lang/crates-io-auth-action@v1
# id: auth
- name: Publish workspace crates
run: cargo publish --workspace
# Note `--no-verify` is safe because we do a publish dry-run elsewhere in CI
run: cargo publish --workspace --no-verify
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }}