From 07cb7ec94e88be1d1739cd8a1614dbe245c35251 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Fri, 20 Sep 2024 15:40:40 -0600 Subject: [PATCH] add node to the get test infos --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e25e214c85..43e1a04602 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,11 +43,14 @@ jobs: EXCLUDE_DIRS=$(echo $EXCLUDE_DIRS | xargs) echo "exclude-dirs=$EXCLUDE_DIRS" >> $GITHUB_OUTPUT + - id: get-node-version + uses: ./.github/actions/get_node_version + - name: Get test infos id: get-test-infos uses: ./.github/actions/get_test_infos with: - node-version: ${{ env.NODE_VERSION }} + node-version: ${{ steps.get-node-version.outputs.node-version }} directories: | ./examples exclude-dirs: ${{ steps.set-exclude-dirs.outputs.exclude-dirs }}