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
4 changes: 2 additions & 2 deletions scripts/validate-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ done

echo ""
if [ -n "$EXECUTE_FLAG" ]; then
echo "Running: cargo check (all packages) then cargo release publish $PACKAGE_ARGS --execute --no-confirm --no-verify"
echo "Running: cargo check (all packages) then cargo publish $PACKAGE_ARGS --no-verify"
else
echo "Running: cargo check (all packages) then cargo publish $PACKAGE_ARGS --dry-run --allow-dirty --no-verify"
fi
Expand All @@ -72,7 +72,7 @@ echo ""
# Then: Either publish or dry-run
if [ -n "$EXECUTE_FLAG" ]; then
# Publish with --no-verify to avoid cargo bug with unpublished deps
cargo release publish $PACKAGE_ARGS --execute --no-confirm --no-verify
cargo publish $PACKAGE_ARGS --no-verify
else
# Dry-run validation - allow dirty state and skip verification
cargo publish $PACKAGE_ARGS --dry-run --allow-dirty --no-verify
Expand Down
Loading