From ad9e64f89422e1057cc818f99038bf91290de804 Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Tue, 31 Oct 2023 14:04:34 +0500 Subject: [PATCH] build: capturing new migrations. --- .github/workflows/capture_new_migrations.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/capture_new_migrations.yml b/.github/workflows/capture_new_migrations.yml index cbfdba171d03..466a0a60d7ef 100644 --- a/.github/workflows/capture_new_migrations.yml +++ b/.github/workflows/capture_new_migrations.yml @@ -124,7 +124,7 @@ jobs: run: | query_result=$(mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select count(*) from django_migrations;" edxapp;) echo "Query Result: $query_result" - echo "${query_result}" >> $GITHUB_ENV + echo "query_result=${query_result}" >> $GITHUB_ENV echo "echo ${{env.query_result}}" shell: bash @@ -158,7 +158,7 @@ jobs: run: | query_result1=$(mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select count(*) from django_migrations;" edxapp;) echo "Query Result: query_result1" - echo "${query_result1}" >> $GITHUB_ENV + echo "query_result1=${query_result1}" >> $GITHUB_ENV echo "echo ${{env.query_result1}}" shell: bash