From ec0d51dc124c0db4a99aa6e5adb852f108079f3c Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Tue, 31 Oct 2023 18:13:25 +0500 Subject: [PATCH] build: capturing new migrations. --- .github/workflows/capture_new_migrations.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/capture_new_migrations.yml b/.github/workflows/capture_new_migrations.yml index 22fd5b46d288..12cc19c78584 100644 --- a/.github/workflows/capture_new_migrations.yml +++ b/.github/workflows/capture_new_migrations.yml @@ -141,11 +141,11 @@ jobs: shell: bash run: | query_result1=$(mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select 1;" edxapp;) - echo "query_result=${query_result1}" >> $GITHUB_ENV + echo "FIRST_QUERY=query_result1" >> $GITHUB_ENV - - name: Step 1 + - name: Step 12 run: | - echo "State is: '${{ env.query_result }}'" + echo "State is: '${{ env.FIRST_QUERY }}'" - name: Checkout branch repo uses: actions/checkout@v2