Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

publish pg 14-16 to trunk #61

Merged
merged 2 commits into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/extension_ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PG Vectorize Extension

Check failure on line 1 in .github/workflows/extension_ci.yml

View workflow job for this annotation

GitHub Actions / Run tests

.github/workflows/extension_ci.yml#L1

This run was manually canceled.

defaults:
run:
Expand Down Expand Up @@ -135,6 +135,9 @@
if: github.event_name == 'release'
name: trunk publish
runs-on: ubuntu-22.04
strategy:
matrix:
pg-version: [14, 15, 16]
steps:
- uses: actions/checkout@v2
- name: Install Rust stable toolchain
Expand All @@ -158,7 +161,7 @@
cargo install pg-trunk
- name: trunk build
working-directory: ./
run: ~/.cargo/bin/trunk build
run: ~/.cargo/bin/trunk build --pg-version ${{ matrix.pg-version }}
- name: trunk publish
working-directory: ./
env:
Expand Down
Loading