mirror of https://github.com/citusdata/citus.git
Fix install extension
parent
d877f2d2a1
commit
b691fc098b
|
@ -7,11 +7,10 @@ runs:
|
||||||
steps:
|
steps:
|
||||||
- name: Expose $PG_MAJOR to Github Env
|
- name: Expose $PG_MAJOR to Github Env
|
||||||
run: |-
|
run: |-
|
||||||
if [ -z "${{ inputs.pg_major }}"]; then
|
[ -z "${{ inputs.pg_major }}"] &&
|
||||||
echo "PG_MAJOR=${{ inputs.pg_major}}" >> $GITHUB_ENV
|
echo "PG_MAJOR=${PG_MAJOR}" ||
|
||||||
else
|
echo "PG_MAJOR=${{ inputs.pg_major }}
|
||||||
echo "PG_MAJOR=${PG_MAJOR}" >> $GITHUB_ENV
|
>> $GITHUB_ENV
|
||||||
fi
|
|
||||||
echo "inputs.pg_major : ${{ inputs.pg_major }}"
|
echo "inputs.pg_major : ${{ inputs.pg_major }}"
|
||||||
echo "env.PG_MAJOR : ${{ env.PG_MAJOR }}"
|
echo "env.PG_MAJOR : ${{ env.PG_MAJOR }}"
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in New Issue