From 4a6fa32330d78776ee215ae40b305a88aec9c7bb Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Tue, 10 Sep 2024 16:08:50 -0400 Subject: [PATCH] put back install postgresql postgresql-contrib --- .github/actions/setup-postgres-linux/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-postgres-linux/action.yml b/.github/actions/setup-postgres-linux/action.yml index 52c25316be4..8c08bbe5725 100644 --- a/.github/actions/setup-postgres-linux/action.yml +++ b/.github/actions/setup-postgres-linux/action.yml @@ -11,6 +11,7 @@ runs: curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc|sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg sudo apt update -y sudo apt install postgresql-16 + sudo apt-get -y install postgresql postgresql-contrib sudo systemctl | grep postgres sudo systemctl start postgresql sudo systemctl enable postgresql