We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16681ff + 5ba0035 commit 0d7a66bCopy full SHA for 0d7a66b
.github/workflows/release.yml
@@ -85,9 +85,8 @@ jobs:
85
cargo install cargo-pgrx --version ${{ matrix.pgrx_version }} --locked
86
cargo pgrx init --pg${{ matrix.postgres }}=/usr/lib/postgresql/${{ matrix.postgres }}/bin/pg_config
87
88
- # selects the pgVer from pg_config on path
89
- # https://github.com/tcdi/pgrx/issues/288
90
- cargo pgrx package --no-default-features --features pg${{ matrix.postgres }}
+ # Explicitly specify pg_config to avoid version detection conflicts
+ cargo pgrx package --pg-config /usr/lib/postgresql/${{ matrix.postgres }}/bin/pg_config --no-default-features --features pg${{ matrix.postgres }}
91
92
# Create installable package
93
mkdir archive
0 commit comments