From b7dbc413fdcfa1363ad75e0e7bd3a1aaedfc4a24 Mon Sep 17 00:00:00 2001 From: Farhad Shabani Date: Mon, 12 Aug 2024 12:38:11 -0700 Subject: [PATCH] fix: include ibc-primitives in release command (#1314) --- .github/workflows/cw-check.yaml | 1 + .github/workflows/no-std.yaml | 1 + .github/workflows/rust.yaml | 1 + Makefile | 2 -- 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cw-check.yaml b/.github/workflows/cw-check.yaml index b5f4653d0..a6b1e7c95 100644 --- a/.github/workflows/cw-check.yaml +++ b/.github/workflows/cw-check.yaml @@ -3,6 +3,7 @@ on: pull_request: paths: - .github/workflows/cw-check.yaml + - Makefile - '*.toml' - Cargo.lock - ci/cw-check/** diff --git a/.github/workflows/no-std.yaml b/.github/workflows/no-std.yaml index 2ed31c2a4..380016451 100644 --- a/.github/workflows/no-std.yaml +++ b/.github/workflows/no-std.yaml @@ -3,6 +3,7 @@ on: pull_request: paths: - .github/workflows/no-std.yaml + - Makefile - '*.toml' - Cargo.lock - ci/no-std-check/** diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 181edf42d..0aca29543 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -3,6 +3,7 @@ on: pull_request: paths: - .github/workflows/rust.yaml + - Makefile - '*.toml' - ci/** - cosmwasm/** diff --git a/Makefile b/Makefile index add16fdc4..ed6159f9c 100644 --- a/Makefile +++ b/Makefile @@ -53,12 +53,10 @@ test: ## Run tests with all features and without default features. check-release: ## Check that the release build compiles. cargo release --workspace --no-push --no-tag \ --exclude ibc-derive \ - --exclude ibc-primitives release: ## Perform an actual release and publishes to crates.io. cargo release --workspace --no-push --no-tag --allow-branch HEAD --execute \ --exclude ibc-derive \ - --exclude ibc-primitives $(MAKE) -C ./cosmwasm release $@ build-tendermint-cw: ## Build the WASM file for the ICS-07 Tendermint light client.