Skip to content

Commit

Permalink
LDEV-5236 GHA: fix public schema permissions for postgres 15+ (7.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer authored Jan 3, 2025
1 parent 616ac88 commit 11ada27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build 6.1
name: Build 7.0

on:
workflow_call:
Expand Down Expand Up @@ -198,6 +198,7 @@ jobs:
sudo -u postgres psql -c 'create database lucee;'
sudo -u postgres psql -c "create user lucee with encrypted password 'lucee'";
sudo -u postgres psql -c 'grant all privileges on database lucee to lucee;'
sudo -u postgres psql -c 'grant all on schema public to lucee;' -d lucee
- name: Start MongoDB (docker)
uses: supercharge/[email protected]
with:
Expand Down

0 comments on commit 11ada27

Please sign in to comment.