Skip to content

Commit 7acd1ad

Browse files
committed
fix: correct the var in action
1 parent a8c05b0 commit 7acd1ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-nix-pgupgrade-scripts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
id: process_release_version
5252
run: |
5353
VERSION=$(nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml)
54-
VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes
54+
VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes
5555
if [[ "${{ inputs.postgresVersion }}" != "" ]]; then
5656
VERSION=${{ inputs.postgresVersion }}
5757
fi

ansible/vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ postgres_major:
1111

1212
# Full version strings for each major version
1313
postgres_release:
14-
postgres15: "15.8.1.010-staging2"
15-
postgres16: "16.3.1.016-staging2"
14+
postgres15: "15.8.1.010-staging3"
15+
postgres16: "16.3.1.016-staging3"
1616

1717
# Non Postgres Extensions
1818
pgbouncer_release: "1.19.0"

0 commit comments

Comments
 (0)