From 785badae6e978d1aea140fb8693596acf6ae6abc Mon Sep 17 00:00:00 2001 From: brecert Date: Tue, 14 Sep 2021 01:16:31 -0400 Subject: [PATCH] Fix env location --- .github/actions/build/action.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 8212824b..92cb62be 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -13,10 +13,6 @@ inputs: required: true default: . -env: - BUILD_FOLDER: ${{ inputs.folder }} - BASE: ${{ inputs.base }} - runs: using: composite steps: @@ -31,6 +27,9 @@ runs: run: yarn install - name: build + env: + BUILD_FOLDER: ${{ inputs.folder }} + BASE: ${{ inputs.base }} shell: bash -l {0} run: | cd "$BUILD_FOLDER"