Skip to content

Commit c0a800c

Browse files
committed
fix: release pipeline
1 parent 57c2f38 commit c0a800c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
# Ensure npm 11.5.1 or later for trusted publishing
3434
- name: Install npm
35-
run: npm install -g npm@latest
35+
run: corepack install npm@latest --global
3636

3737
- name: Install dependencies
3838
run: pnpm install --frozen-lockfile

apps/docs/src/containers/components/component-icons.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ const icons: Record<string, IconFn> = {
9191
modal: () => <svg viewBox="0 0 24 24" fill="none"><rect x="3" y="3" width="18" height="18" rx="2" {...s} opacity="0.15" /><rect x="5" y="6" width="14" height="12" rx="2" {...s} /><line x1="5" y1="10" x2="19" y2="10" {...s} /><line x1="16" y1="8" x2="16" y2="8.01" {...s} strokeWidth="2" /></svg>,
9292
notification: () => <svg viewBox="0 0 24 24" fill="none"><path d="M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9" {...s} /><path d="M13.73 21a2 2 0 01-3.46 0" {...s} /></svg>,
9393
'pop-confirm': () => <svg viewBox="0 0 24 24" fill="none"><rect x="3" y="3" width="18" height="12" rx="2" {...s} /><path d="M9 15l3 4 3-4" {...s} /><line x1="12" y1="7" x2="12" y2="10" {...s} /><circle cx="12" cy="12" r="0.5" fill="currentColor" /></svg>,
94+
tour: () => <svg viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="9" {...s} strokeDasharray="4 2" /><circle cx="12" cy="12" r="4" {...s} /><circle cx="12" cy="12" r="1.5" fill="currentColor" /><polyline points="18,4 20,2" {...s} /><line x1="20" y1="2" x2="21" y2="2" {...s} /></svg>,
9495
result: () => <svg viewBox="0 0 24 24" fill="none"><circle cx="12" cy="10" r="6" {...s} /><polyline points="9,10 11,12.5 15,8" {...s} /><line x1="8" y1="19" x2="16" y2="19" {...s} /></svg>,
9596
'scroll-indicator': () => <svg viewBox="0 0 24 24" fill="none"><rect x="3" y="3" width="18" height="3" rx="1.5" {...s} /><rect x="3" y="3" width="10" height="3" rx="1.5" fill="currentColor" opacity="0.2" {...s} /></svg>,
9697
skeleton: () => <svg viewBox="0 0 24 24" fill="none"><rect x="3" y="4" width="18" height="4" rx="2" {...s} strokeDasharray="3 3" /><rect x="3" y="11" width="12" height="4" rx="2" {...s} strokeDasharray="3 3" /><rect x="3" y="18" width="15" height="3" rx="1.5" {...s} strokeDasharray="3 3" /></svg>,

0 commit comments

Comments
 (0)