mirror of
https://github.com/aljazceru/cdk.git
synced 2026-02-20 04:27:03 +01:00
chore: use workspace version
This commit is contained in:
23
misc/scripts/release.sh
Normal file
23
misc/scripts/release.sh
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
args=(
|
||||
"-p cdk"
|
||||
"-p cdk-redb"
|
||||
"-p cdk-sqlite"
|
||||
"-p cdk-rexie"
|
||||
"-p cdk-cln"
|
||||
"-p cdk-fake-wallet"
|
||||
"-p cdk-strike"
|
||||
"-p cdk-cli"
|
||||
"-p cdk-axum"
|
||||
"-p cdk-mintd"
|
||||
)
|
||||
|
||||
for arg in "${args[@]}";
|
||||
do
|
||||
echo "Publishing '$arg'"
|
||||
cargo publish "$arg"
|
||||
echo
|
||||
done
|
||||
Reference in New Issue
Block a user