mirror of https://github.com/citusdata/citus.git
Fix condition check
parent
5fe3ae718c
commit
7779d8926a
|
@ -5,6 +5,7 @@ inputs:
|
||||||
skip_installation:
|
skip_installation:
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
|
type: boolean
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
|
@ -20,7 +21,7 @@ runs:
|
||||||
with:
|
with:
|
||||||
name: build-${{ env.PG_MAJOR }}
|
name: build-${{ env.PG_MAJOR }}
|
||||||
- name: Install Extension
|
- name: Install Extension
|
||||||
if: ${{ !inputs.skip_installation }}
|
if: ${{ inputs.skip_installation == 'false' }}
|
||||||
run: tar xfv "install-$PG_MAJOR.tar" --directory /
|
run: tar xfv "install-$PG_MAJOR.tar" --directory /
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Configure
|
- name: Configure
|
||||||
|
|
Loading…
Reference in New Issue