Skip to content

Commit

Permalink
ci: fix dry-run (#34)
Browse files Browse the repository at this point in the history
# Rationale for this change

Semantic release is failing because `cargo publish -p proof-of-sql
--dry-run` fails since it needs `proof-of-sql-parser`, which doesn't
publish because it is a dry run.

# What changes are included in this PR?

Commented out the dry-run for `proof-of-sql` publishing.

# Are these changes tested?

No
  • Loading branch information
JayWhite2357 authored Jun 27, 2024
1 parent 026019a commit e69e4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ sed -i 's/version = "*.*.*" # DO NOT CHANGE THIS LINE! This will be automaticall
sed -i 's/path = "[^"]*"/version = "'${NEW_VERSION}'"/g' Cargo.toml

cargo publish -p proof-of-sql-parser --dry-run
cargo publish -p proof-of-sql --dry-run
#cargo publish -p proof-of-sql --dry-run

0 comments on commit e69e4f7

Please sign in to comment.