Skip to content
Merged
Changes from all commits
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
5 changes: 4 additions & 1 deletion .github/workflows/release-proposal-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ jobs:
echo "Skipping cargo package: no crates had a version bump vs the base ref (PKG_ARGS is empty)."
exit 0
fi
cargo package "${PKG_ARGS[@]}" --all-features
# cargo 1.92+ required: earlier versions (incl. the workspace MSRV 1.87) fail to
# resolve sibling crates by version requirement when those versions are not yet on
# crates.io
cargo +1.92.0 package "${PKG_ARGS[@]}" --all-features
echo "upload_artifact=true" >> "$GITHUB_OUTPUT"

- name: Upload crates
Expand Down
Loading