ci: update deprecated to ignore www/package.json

This commit is contained in:
shadcn
2025-10-15 11:39:53 +04:00
parent 679c852254
commit 69402b3579

View File

@@ -39,7 +39,8 @@ jobs:
const changedFiles = `${{ steps.changed-files.outputs.all_changed_files }}`.split(' ');
const wwwFiles = changedFiles.filter(file =>
file.startsWith('apps/www/') &&
!file.startsWith('apps/www/public/r/')
!file.startsWith('apps/www/public/r/') &&
file !== 'apps/www/package.json'
);
if (wwwFiles.length > 0) {