Fix condition check

pull/7154/head
Gokhan Gulbiz 2023-08-21 22:09:56 +03:00
parent 5fe3ae718c
commit 7779d8926a
No known key found for this signature in database
GPG Key ID: 608EF06B6BD1B45B
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ inputs:
skip_installation:
required: false
default: false
type: boolean
runs:
using: composite
steps:
@ -20,7 +21,7 @@ runs:
with:
name: build-${{ env.PG_MAJOR }}
- name: Install Extension
if: ${{ !inputs.skip_installation }}
if: ${{ inputs.skip_installation == 'false' }}
run: tar xfv "install-$PG_MAJOR.tar" --directory /
shell: bash
- name: Configure