From 3b68c334dc78e5d05f7d71259c56a76fcb7ec89a Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Tue, 12 Dec 2023 00:08:36 +0300 Subject: [PATCH] Update action.yml --- action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index e3523ab..13a939e 100644 --- a/action.yml +++ b/action.yml @@ -129,8 +129,9 @@ runs: shell: bash run: |- # Set ATMOS_BASE_PATH allow `cloudposse/utils` provider to read atmos config from the correct path - echo "ATMOS_BASE_PATH=$(realpath ${{ steps.base-path.outputs.value }})" >> $GITHUB_ENV - + ATMOS_BASE_PATH="${{ steps.base-path.outputs.value }}" + echo "ATMOS_BASE_PATH=$(realpath ${ATMOS_BASE_PATH:-./})" >> $GITHUB_ENV + - name: Install tfcmt if: env.ACTIONS_ENABLED == 'true' uses: jaxxstorm/action-install-gh-release@v1.10.0