From da99689a7e842ea7b82e08d798ac60a751433360 Mon Sep 17 00:00:00 2001 From: Jeroen Baten Date: Thu, 16 Jun 2022 21:01:52 +0200 Subject: [PATCH] Fixing database name typo Has to be libreplandev. --- .github/workflows/maven.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index f24b4648c..ebabac8aa 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -42,10 +42,10 @@ jobs: run: | sudo -u postgres psql --command="CREATE USER libreplan PASSWORD 'libreplan'" --command="\du" - - name: Create timetable database + - name: Create libreplandev database run: | - sudo -u postgres createdb --owner=libreplan libreplan - PGPASSWORD=libreplan psql --username=libreplan --host=localhost --list libreplan + sudo -u postgres createdb --owner=libreplan libreplandev + PGPASSWORD=libreplan psql --username=libreplan --host=localhost --list libreplandev - name: Set up JDK 8 uses: actions/setup-java@v3