From 4eba2efa77cd3f3c82d18df811933be58b08ed41 Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Tue, 21 Jan 2025 10:44:01 -0800 Subject: [PATCH] btr: Skip node setup if no assets (#27) --- build-tag-release/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/build-tag-release/action.yml b/build-tag-release/action.yml index 877a51d..9f15c53 100644 --- a/build-tag-release/action.yml +++ b/build-tag-release/action.yml @@ -39,6 +39,7 @@ runs: steps: - name: Setup node uses: actions/setup-node@v3 + if: ${{ inputs.build_node_assets == 'true' }} with: node-version: "lts/*" cache: "npm"