Skip to content

Commit

Permalink
Remember to apt-get update before install in pgxn workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme committed Jun 8, 2023
1 parent acac08a commit b2b3819
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pgxn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
run: sudo pip install pgxnclient

- name: Install PostgreSQL server dependencies
run: sudo apt install postgresql-server-dev-14 postgis
run: |
sudo apt-get update
sudo apt-get install postgresql-server-dev-14 postgis
- name: Prepare PostgreSQL
run: |
Expand Down

0 comments on commit b2b3819

Please sign in to comment.