We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be702bd commit 23f7a44Copy full SHA for 23f7a44
1 file changed
.github/workflows/pg-extension-build.yaml
@@ -35,7 +35,7 @@ env:
35
GREEN: "\e[92m"
36
RED: "\e[91m"
37
DEFAULT: "\e[0m"
38
- PG_VERSION: "${{ inputs.pg_version }}"
+ PG_VERSION: "${{ inputs.pg_version || '18' }}"
39
40
jobs:
41
setup:
@@ -49,9 +49,6 @@ jobs:
49
- name: Set versions to build
50
id: set-versions
51
run: |-
52
- if [ "${{ github.event_name }}" == 'push']; then
53
- PG_VERSION="all"
54
- fi
55
if [ "${PG_VERSION}" == "all" ]; then
56
echo "versions=[\"16\",\"17\",\"18\"]" >> "${GITHUB_OUTPUT}"
57
echo "versions-list=16,17,18" >> "${GITHUB_OUTPUT}"
0 commit comments