From ccefd1c91e1f642dfc42b458a65758c6d56b7369 Mon Sep 17 00:00:00 2001 From: Collin Barrett <6483057+collinbarrett@users.noreply.github.com> Date: Sun, 15 Jun 2025 15:29:16 -0500 Subject: [PATCH] fix(web): use proper shadcn pkg --- .github/workflows/web-shadcn-updater.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/web-shadcn-updater.yml b/.github/workflows/web-shadcn-updater.yml index 7b773f8d1..72096cb60 100644 --- a/.github/workflows/web-shadcn-updater.yml +++ b/.github/workflows/web-shadcn-updater.yml @@ -30,7 +30,7 @@ jobs: - name: Check for shadcn/ui component updates id: diff run: | - UPDATES=$(npx shadcn-ui@latest diff || true) + UPDATES=$(npx shadcn@latest diff || true) if [[ $UPDATES == *"No updates available."* || -z "$UPDATES" ]]; then echo "updates=false" >> $GITHUB_OUTPUT else @@ -42,7 +42,7 @@ jobs: if: steps.diff.outputs.updates == 'true' run: | while IFS= read -r component; do - npx shadcn-ui@latest add "$component" --overwrite + npx shadcn@latest add "$component" --overwrite done < shadcn-updates.txt - name: Create Pull Request