Update cargo publish nightly to 2026-06-12 (#19789)

Fixes the crates.io publishing error from
[https://github.com/rust-lang/cargo/issues/17093](https://github.com/rust-lang/cargo/issues/17093)
This commit is contained in:
konsti
2026-06-12 11:26:34 +02:00
committed by GitHub
parent b615f83bda
commit 4e06bb6ff4
+2 -2
View File
@@ -30,9 +30,9 @@ jobs:
# Nightly is required for the unstable `-Zpublish-timeout` flag, which lets us
# raise the per-crate wait above the 60s default. crates.io indexing has been
# known to lag long enough to exceed that during workspace publishes.
run: rustup toolchain install nightly-2026-04-15 --profile minimal --no-self-update
run: rustup toolchain install nightly-2026-06-12 --profile minimal --no-self-update
- name: Publish workspace crates
# Note `--no-verify` is safe because we do a publish dry-run elsewhere in CI
run: python3 scripts/publish-crates.py --cargo cargo +nightly-2026-04-15 --no-verify -- -Zpublish-timeout --config 'publish.timeout=600'
run: python3 scripts/publish-crates.py --cargo cargo +nightly-2026-06-12 --no-verify -- -Zpublish-timeout --config 'publish.timeout=600'
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}