diff --git a/.github/workflows/capture_new_migrations.yml b/.github/workflows/capture_new_migrations.yml index 1f06f9a8726c..0df518f3ec6f 100644 --- a/.github/workflows/capture_new_migrations.yml +++ b/.github/workflows/capture_new_migrations.yml @@ -155,7 +155,7 @@ jobs: pip install "django~=${{ matrix.django-version }}.0" pip check # fail if this test-reqs/Django combination is broken fi -# + - name: list installed package versions run: | pip freeze @@ -173,7 +173,7 @@ jobs: - name: Verify executed migrations on branch. shell: bash - id: capture2 + id: capture23 run: | query_result=$(mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select count(*) from django_migrations;" edxapp;) numeric_result=$(echo "$query_result" | sed 's/[^0-9]*//g')