From 46b9253729193e47a8be99154bae41c35359a373 Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Thu, 4 Jun 2026 22:10:20 -0400 Subject: [PATCH] ci: exclude ONNX models from publish output (#1853) --- .github/workflows/sunnypilot-build-prebuilt.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sunnypilot-build-prebuilt.yaml b/.github/workflows/sunnypilot-build-prebuilt.yaml index 79cb5e3d61..977dc94972 100644 --- a/.github/workflows/sunnypilot-build-prebuilt.yaml +++ b/.github/workflows/sunnypilot-build-prebuilt.yaml @@ -215,8 +215,8 @@ jobs: --exclude='**/SConstruct' \ --exclude='**/SConscript' \ --exclude='**/.venv/' \ - --exclude='selfdrive/modeld/models/driving_vision.onnx' \ - --exclude='selfdrive/modeld/models/driving_policy.onnx' \ + --exclude='selfdrive/modeld/models/*.onnx*' \ + --exclude='sunnypilot/modeld*/models/*.onnx*' \ --exclude='third_party/*x86*' \ --exclude='third_party/*Darwin*' \ --delete-excluded \