From e567abf8b1004f83c26ddff5f466169f5d240680 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Wed, 14 Feb 2024 13:52:55 -0800 Subject: [PATCH] Add updated publish script The previous one relies on CI automation that cannot be maintained without the repo owner, who is absent. The new script can be run locally by any authorized maintainer. --- dev/publish.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 dev/publish.sh diff --git a/dev/publish.sh b/dev/publish.sh new file mode 100644 index 00000000..705d8cf2 --- /dev/null +++ b/dev/publish.sh @@ -0,0 +1,3 @@ +cargo publish --manifest-path derive_builder_core/Cargo.toml && +cargo publish --manifest-path derive_builder_macro/Cargo.toml && +cargo publish --manifest-path derive_builder/Cargo.toml; \ No newline at end of file