From d2f5eecf998ae0ce0aa4ba9e931fb11c480f2c31 Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Mon, 27 May 2024 19:00:22 +0200 Subject: [PATCH] fix condition --- .github/workflows/check-migrations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-migrations.yml b/.github/workflows/check-migrations.yml index e68ff19a68..594efbc5d8 100644 --- a/.github/workflows/check-migrations.yml +++ b/.github/workflows/check-migrations.yml @@ -45,7 +45,7 @@ jobs: uses: actions/checkout@v4 - name: Build EXTRA_ARGS - if: ! startsWith(github.ref, 'refs/tags/v') + if: ${{ !startsWith(github.ref, 'refs/tags/v') }} run: | EXTRA_FLAGS+=" --disable-spec-version-check" echo "Disabling the spec version check since we are not releasing"