Skip to content

Commit

Permalink
actions: install keys for postgres repo
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Nov 24, 2022
1 parent 1f3edf6 commit 04ee394
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/setup-postgresql/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ runs:
- name: Remove existing PostgreSQL
run: |
sudo apt-get purge -yq postgresql*
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
sudo apt install curl ca-certificates gnupg
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg >/dev/null
sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
sudo apt-get update -qq
shell: bash
Expand Down

0 comments on commit 04ee394

Please sign in to comment.