Skip to content

Commit

Permalink
build: capturing new migrations.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Oct 31, 2023
1 parent 61b4575 commit ad9e64f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/capture_new_migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit ad9e64f

Please sign in to comment.