From e69e4f774997aedee1d34492bb26f68e92588646 Mon Sep 17 00:00:00 2001 From: Jay White Date: Thu, 27 Jun 2024 15:21:40 -0400 Subject: [PATCH] ci: fix dry-run (#34) # 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 --- ci/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/publish.sh b/ci/publish.sh index b19776f29..5fcce452e 100755 --- a/ci/publish.sh +++ b/ci/publish.sh @@ -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