From 04a94829ab26c8f7f29d39099844a2111f00ab03 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Mon, 29 Jan 2024 15:45:55 -0500 Subject: [PATCH] make the file executable --- .github/actions/setup-postgres-linux/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-postgres-linux/action.yml b/.github/actions/setup-postgres-linux/action.yml index 27b9a359..a9ee3212 100644 --- a/.github/actions/setup-postgres-linux/action.yml +++ b/.github/actions/setup-postgres-linux/action.yml @@ -10,5 +10,5 @@ runs: run: | sudo systemctl start postgresql.service pg_isready - sudo chmod +x ${{ github.action_path }}/setup_db.sh + sudo chmod a+x ${{ github.action_path }}/setup_db.sh sudo -u postgres bash ${{ github.action_path }}/setup_db.sh