From 5fe0e0987a4b7fd234a928d099ccea00fbfbcf43 Mon Sep 17 00:00:00 2001 From: Peter White Date: Thu, 29 Aug 2024 20:47:39 -0600 Subject: [PATCH] chore(CI): add --features to building node in release.yml (#252) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07df177d..bbbac837 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -168,7 +168,7 @@ jobs: run: rustup target add ${{ matrix.platform.target }} - name: Build node - run: cargo build --profile=production -p pop-node --target ${{ matrix.platform.target }} + run: cargo build --profile=production -p pop-node --features on-chain-release-build --target ${{ matrix.platform.target }} - name: Package binary (Linux) if: contains(matrix.platform.target, 'linux')