From 47da3b50631273da5d90edc1177ac563f1198514 Mon Sep 17 00:00:00 2001 From: Nick Bland Date: Mon, 8 Nov 2021 12:46:23 +1000 Subject: [PATCH] woops! accidentally escaped the variables for connection details. --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index d8ac34a..5cab058 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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