From d877f2d2a1913881cb23d96032d18a6acc21aa59 Mon Sep 17 00:00:00 2001 From: Gokhan Gulbiz Date: Mon, 21 Aug 2023 12:42:25 +0300 Subject: [PATCH] Fix install extension --- .github/actions/install_extension/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/install_extension/action.yml b/.github/actions/install_extension/action.yml index 40132a881..30a50c7f5 100644 --- a/.github/actions/install_extension/action.yml +++ b/.github/actions/install_extension/action.yml @@ -10,10 +10,10 @@ runs: if [ -z "${{ inputs.pg_major }}"]; then echo "PG_MAJOR=${{ inputs.pg_major}}" >> $GITHUB_ENV else - echo "PG_MAJOR=${{ env.PG_MAJOR }}" >> $GITHUB_ENV + echo "PG_MAJOR=${PG_MAJOR}" >> $GITHUB_ENV fi echo "inputs.pg_major : ${{ inputs.pg_major }}" - echo "env.pg_major : ${{ env.PG_MAJOR }}" + echo "env.PG_MAJOR : ${{ env.PG_MAJOR }}" shell: bash - uses: actions/download-artifact@v3.0.1 with: