Trying to fix SCRAM error
This commit is contained in:
parent
f8e6ff5653
commit
b6a6b32e11
1 changed files with 6 additions and 1 deletions
7
.github/workflows/maven.yml
vendored
7
.github/workflows/maven.yml
vendored
|
|
@ -38,9 +38,14 @@ jobs:
|
|||
sudo systemctl start postgresql.service
|
||||
pg_isready
|
||||
|
||||
- name: Set scram password encryption
|
||||
run: |
|
||||
sudo -u postgres psql --command="ALTER SYSTEM SET password_encryption = 'scram-sha-256';"
|
||||
|
||||
- name: Create libreplan user
|
||||
run: |
|
||||
sudo -u postgres psql --command="ALTER SYSTEM SET password_encryption = 'scram-sha-256'; CREATE USER libreplan PASSWORD 'libreplan'" --command="\du"
|
||||
sudo -u postgres psql --command="CREATE USER libreplan PASSWORD 'libreplan'; "
|
||||
#" --command="\du"
|
||||
|
||||
- name: Create libreplandev database
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue