Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-crates workflow: Add sleep between steps to let index update #495

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/release-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ jobs:
run: |
set -ex

sleep 30 # Give crates.io some more time to settle down

# Install random crate to force update of the registry
cargo install lazy_static || true

Expand All @@ -96,6 +98,8 @@ jobs:
run: |
set -ex

sleep 30 # Give crates.io some more time to settle down

# Install random crate to force update of the registry
cargo install lazy_static || true

Expand Down