From c12ec7a262bb14f93833f6f61c299277335427d9 Mon Sep 17 00:00:00 2001 From: htrinter Date: Sun, 26 Nov 2023 21:14:48 +0100 Subject: [PATCH] fix node version parameter --- .github/workflows/release-action.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-action.yml b/.github/workflows/release-action.yml index fc09aad..f2b387b 100644 --- a/.github/workflows/release-action.yml +++ b/.github/workflows/release-action.yml @@ -3,14 +3,12 @@ on: push: tags: - 'testv*' -env: - NODE_VERSION: '18' jobs: call-test-workflow: uses: ./.github/workflows/test-workflow.yml with: - node-version: ${{ env.NODE_VERSION }} + node-version: '18' call-release-workflow: uses: ./.github/workflows/release-workflow.yml with: - node-version: ${{ env.NODE_VERSION }} + node-version: '18'