From 77e865c5c461cb134dc1af661a1aaf552a0654c2 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Wed, 9 Nov 2022 16:34:30 -0800 Subject: [PATCH] CI Test --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1131076a7..868fb3aa4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -84,6 +84,7 @@ jobs: name: Execute migration command: | npm install hasura-cli -g + echo ${HASURA_TEST_SECRET} hasura migrate apply --endpoint https://db.test.bodyshop.app/ --admin-secret << parameters.secret >> hasura metadata apply --endpoint https://db.test.bodyshop.app/ --admin-secret << parameters.secret >> hasura metadata reload --endpoint https://db.test.bodyshop.app/ --admin-secret << parameters.secret >> @@ -160,7 +161,7 @@ workflows: branches: only: master - hasura-migrate: - secret: $HASURA_PROD_SECRET + secret: ${HASURA_PROD_SECRET} filters: branches: only: master @@ -169,7 +170,7 @@ workflows: branches: only: test - test-hasura-migrate: - secret: $HASURA_TEST_SECRET1 + secret: ${HASURA_TEST_SECRET} filters: branches: only: test