Skip to content

Commit 315506d

Browse files
committed
chore: fix script
1 parent bdfc005 commit 315506d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
publish-prod:
8585
needs: prepare
8686
runs-on: ubuntu-latest
87-
if: github.ref_name == 'develop' || contains( github.ref, 'release' )
87+
if: github.ref_name == 'develop' || contains( github.ref, 'release' ) || github.ref_name == 'pcnc/add-helloworld-fdw-15.8prev'
8888

8989
strategy:
9090
matrix:
@@ -101,7 +101,7 @@ jobs:
101101
id: process_release_version
102102
run: |
103103
VERSION=$(nix run nixpkgs#yq -- '.postgres_release["postgres'${{ matrix.postgres_version }}'"]' ansible/vars.yml)
104-
VERSION=$(echo $PG_VERSION | tr -d '"') # Remove any surrounding quotes
104+
VERSION=$(echo $VERSION | tr -d '"') # Remove any surrounding quotes
105105
if [[ "${{ inputs.postgresVersion }}" != "" ]]; then
106106
VERSION=${{ inputs.postgresVersion }}
107107
fi

0 commit comments

Comments
 (0)