Skip to content

Commit 114b102

Browse files
simple cargo publish helper
1 parent d7e3764 commit 114b102

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

publish.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
# Helper to publish all crates in this repository.
3+
4+
set -e
5+
6+
# "hpke-rs-crypto
7+
cd traits && cargo publish $@ && cd -
8+
9+
# hpke-rs
10+
cargo publish $@
11+
12+
# hpke-rs-evercrypt
13+
cd evercrypt_provider && cargo publish $@ && cd -
14+
15+
# hpke-rs-rust-crypto
16+
cd rust_crypto_provider && cargo publish $@ && cd -

0 commit comments

Comments
 (0)