diff --git a/.github/workflows/publish-nix-pgupgrade-scripts.yml b/.github/workflows/publish-nix-pgupgrade-scripts.yml index 1c6354f41..5015c7ad3 100644 --- a/.github/workflows/publish-nix-pgupgrade-scripts.yml +++ b/.github/workflows/publish-nix-pgupgrade-scripts.yml @@ -51,7 +51,7 @@ jobs: id: process_release_version run: | VERSION=$(nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml) - VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes + VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes if [[ "${{ inputs.postgresVersion }}" != "" ]]; then VERSION=${{ inputs.postgresVersion }} fi diff --git a/ansible/vars.yml b/ansible/vars.yml index 5e17dcf08..852c2d7ce 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -11,8 +11,8 @@ postgres_major: # Full version strings for each major version postgres_release: - postgres15: "15.8.1.010-staging2" - postgres16: "16.3.1.016-staging2" + postgres15: "15.8.1.010-staging3" + postgres16: "16.3.1.016-staging3" # Non Postgres Extensions pgbouncer_release: "1.19.0"