We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 549f9eb commit c83b1c6Copy full SHA for c83b1c6
.github/workflows/publish-nix-pgupgrade-scripts.yml
@@ -72,6 +72,9 @@ jobs:
72
id: process_release_version
73
run: |
74
VERSION=$(grep 'postgres-version' common-nix.vars.pkr.hcl | sed -e 's/postgres-version = "\(.*\)"/\1/g')
75
+ if [[ "${{ inputs.postgresVersion }}" != "" ]]; then
76
+ VERSION=${{ inputs.postgresVersion }}
77
+ fi
78
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
79
80
- name: Create a tarball containing pg_upgrade scripts
0 commit comments