Skip to content

Commit

Permalink
Fix package bash workflow (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspermarstal authored Mar 2, 2024
1 parent b8389d3 commit 1a5015b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install PostgreSQL headers
run: sudo apt-get install postgresql-server-dev-14
run: |
sudo apt-get update
sudo apt-get install postgresql-server-dev-14
- name: Install cargo-pgrx
run: |
PGRX_VERSION=$(cargo metadata --format-version 1 | jq -r '.packages[]|select(.name=="pgrx")|.version')
Expand Down

0 comments on commit 1a5015b

Please sign in to comment.