Skip to content

Commit 0d7a66b

Browse files
authored
Merge pull request #616 from supabase/rs/fix-release
fix(release): release action did not package successfully
2 parents 16681ff + 5ba0035 commit 0d7a66b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,8 @@ jobs:
8585
cargo install cargo-pgrx --version ${{ matrix.pgrx_version }} --locked
8686
cargo pgrx init --pg${{ matrix.postgres }}=/usr/lib/postgresql/${{ matrix.postgres }}/bin/pg_config
8787
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 }}
88+
# Explicitly specify pg_config to avoid version detection conflicts
89+
cargo pgrx package --pg-config /usr/lib/postgresql/${{ matrix.postgres }}/bin/pg_config --no-default-features --features pg${{ matrix.postgres }}
9190
9291
# Create installable package
9392
mkdir archive

0 commit comments

Comments
 (0)