From bcf02b57148990178df4bd995bef9d0714b58a42 Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Mon, 27 Oct 2025 00:10:41 +0100 Subject: [PATCH] added ci step to make db creation script +x --- .gitea/workflows/setup-db.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/setup-db.yml b/.gitea/workflows/setup-db.yml index edc8106..e7df7fe 100644 --- a/.gitea/workflows/setup-db.yml +++ b/.gitea/workflows/setup-db.yml @@ -33,6 +33,9 @@ jobs: run: | echo "Running database creation script..." + + # Add executable permission to the script + chmod +x ./scripts/create_db_user.sh # Export the admin password so psql can use it automatically export PGPASSWORD=$POSTGRES_ADMIN_PASSWORD