woops! accidentally escaped the variables for connection details.

This commit is contained in:
Nick Bland 2021-11-08 12:46:23 +10:00
parent 7d7e7dc2d5
commit 47da3b5063
No known key found for this signature in database
GPG Key ID: B46CF88E4DAB4A2C

View File

@ -19,7 +19,7 @@ steps:
image: postgres:12-alpine
commands:
- sleep 15
- psql -U ${POSTGRES_USER} -d ${POSTGRES_DB}
- psql -U $POSTGRES_USER -d $POSTGRES_DB
- name: sqlxMigrate
image: rust:1.56