Skip to content

Commit 1ca4b67

Browse files
committed
fix
1 parent eb23309 commit 1ca4b67

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci-testing-deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2869,7 +2869,7 @@ jobs:
28692869
needs: [changes]
28702870
if: ${{ needs.changes.outputs.anything == 'true' || github.event_name == 'push' }}
28712871
timeout-minutes: 10
2872-
name: Check api-specs are up to date
2872+
name: check api-specs are up to date
28732873
runs-on: ubuntu-latest
28742874
steps:
28752875
- name: setup python environment
@@ -2888,7 +2888,8 @@ jobs:
28882888
run: |
28892889
uv venv .venv && source .venv/bin/activate
28902890
make openapi-specs
2891-
changed_files=$(git diff --name-only | tee /dev/tty)
2891+
changed_files=$(git diff --name-only)
2892+
echo "${changed_files}"
28922893
if echo ${changed_files} | grep -qE '^(openapi\.json|openapi\.yaml)$'; then
28932894
echo "Run make openapi-specs and commit changes" && exit 1
28942895
fi

0 commit comments

Comments
 (0)