From 351886c7fef72c5cc7e72d78baf83834e87575da Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Tue, 31 Oct 2023 19:11:08 +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 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')