From 4a8623566b8323cf9274034fb25b45882036bb83 Mon Sep 17 00:00:00 2001 From: Sean Chen Date: Wed, 14 Aug 2024 09:34:20 -0500 Subject: [PATCH] Do not exclude ibc-client-tenderint-cw from `make release` --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index da83d71..03cad0f 100644 --- a/Makefile +++ b/Makefile @@ -23,12 +23,10 @@ test: ## Run tests with all features and without default features. cargo test --all-targets --all-features --no-fail-fast --release check-release: ## Check that the release build compiles. - cargo release --workspace --no-push --no-tag \ - --exclude ibc-client-tendermint-cw + cargo release --workspace --no-push --no-tag release: ## Perform an actual release and publishes to crates.io. - cargo release --workspace --no-push --no-tag --allow-branch HEAD --execute \ - --exclude ibc-client-tendermint-cw + cargo release --workspace --no-push --no-tag --allow-branch HEAD --execute build-tendermint-cw: ## Build the WASM file for the ICS-07 Tendermint light client. @echo "Building the WASM file for the ICS-07 Tendermint light client"