Fix install_extension

pull/7154/head
Gokhan Gulbiz 2023-08-21 12:27:15 +03:00
parent de7d896ac4
commit a80186d7f8
No known key found for this signature in database
GPG Key ID: 608EF06B6BD1B45B
2 changed files with 8 additions and 2 deletions

View File

@ -6,7 +6,14 @@ runs:
using: composite
steps:
- name: Expose $PG_MAJOR to Github Env
run: echo "PG_MAJOR=${{ inputs.pg_major || env.PG_MAJOR }}" >> $GITHUB_ENV
run: |-
if [ -z "${{ inputs.pg_major }}"]; then
echo "PG_MAJOR=${{ inputs.pg_major}}" >> $GITHUB_ENV
else
echo "PG_MAJOR=${{ env.PG_MAJOR }}" >> $GITHUB_ENV
fi
echo "inputs.pg_major : ${{ inputs.pg_major }}"
echo "env.pg_major : ${{ env.PG_MAJOR }}"
shell: bash
- uses: actions/download-artifact@v3.0.1
with:

View File

@ -397,7 +397,6 @@ jobs:
test-flakyness-pre:
name: Detect regression tests need to be ran
runs-on: ubuntu-latest
needs: build
outputs:
tests: ${{ steps.detect-regression-tests.outputs.tests }}
steps: