From 825366f684f08375484d0b2d98704202f692fc51 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 13 Feb 2024 07:01:37 +0000 Subject: [PATCH] fix schema path (#6474) --- .github/workflows/qc_checks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/qc_checks.yaml b/.github/workflows/qc_checks.yaml index 10b62a0c32..1975cefb23 100644 --- a/.github/workflows/qc_checks.yaml +++ b/.github/workflows/qc_checks.yaml @@ -160,8 +160,8 @@ jobs: - name: Check for differences in schemas if: needs.paths-filter.outputs.api == 'false' run: | - diff --color -u schema.yml api.yaml - diff -u schema.yml api.yaml && echo "no difference in API schema " || echo "differences in API schema" && exit 2 + diff --color -u InvenTree/schema.yml api.yaml + diff -u InvenTree/schema.yml api.yaml && echo "no difference in API schema " || echo "differences in API schema" && exit 2 - name: Check schema - including warnings run: invoke schema continue-on-error: true