From ce4c088857cf68e56d3b2d5387b5dd22ff016592 Mon Sep 17 00:00:00 2001 From: alondhe Date: Tue, 5 Sep 2023 13:44:35 -0700 Subject: [PATCH] changed test to use secret file --- .github/workflows/default.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 20182b6..15adac5 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -27,4 +27,4 @@ jobs: run: | sudo apt-get update sudo apt-get install --yes --no-install-recommends postgresql-client - PGPASSWORD=mypass psql -h 127.0.0.1 -p 5432 -U postgres -c "select * from webapi.source limit 1" \ No newline at end of file + PGPASSWORD=$(<./secrets/webapi/WEBAPI_DATASOURCE_PASSWORD) psql -h 127.0.0.1 -p 5432 -U postgres -c "select * from webapi.source limit 1" \ No newline at end of file