From 89066d04de23e9fef584f33bfe49efcc0c22431f Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Wed, 15 May 2024 13:38:14 +0200 Subject: [PATCH] CI: Fix source run on Macos The path in the zip file has been changed by the postgres packagers --- .github/workflows/source-gem.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/source-gem.yml b/.github/workflows/source-gem.yml index a34b9e10..32a34a7f 100644 --- a/.github/workflows/source-gem.yml +++ b/.github/workflows/source-gem.yml @@ -120,6 +120,7 @@ jobs: wget https://get.enterprisedb.com/postgresql/postgresql-$PGVERSION-binaries.zip && \ sudo mkdir -p /Library/PostgreSQL && \ sudo unzip postgresql-$PGVERSION-binaries.zip -d /Library/PostgreSQL/$PGVER && \ + sudo mv /Library/PostgreSQL/$PGVER/pgsql/* /Library/PostgreSQL/$PGVER/ && \ echo /Library/PostgreSQL/$PGVER/bin >> $GITHUB_PATH - run: gem update --system 3.3.26