Skip to content

Commit 606c45f

Browse files
authored
fix(svelte-core): ensure dist is packaged in CI release (#461)
1 parent e43f3c7 commit 606c45f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: actions/download-artifact@v4
6767
with:
6868
name: build
69-
path: packages/svelte
69+
path: packages
7070

7171
- name: ▶️ Run ${{ matrix.check }}
7272
run: pnpm run ${{ matrix.check }}
@@ -104,7 +104,8 @@ jobs:
104104
name: build
105105
path: |
106106
packages/svelte/README.md
107-
packages/svelte/types
107+
packages/svelte/dist
108+
packages/svelte-core/dist
108109
109110
release:
110111
needs: [main, build]
@@ -133,7 +134,7 @@ jobs:
133134
uses: actions/download-artifact@v4
134135
with:
135136
name: build
136-
path: packages/svelte
137+
path: packages
137138

138139
- name: 🚀 Release
139140
run: |

packages/svelte-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const { baseElement, container, component, unmount, rerender } = render(
7575
| `unmount` | `() => void` | Unmount the component from the document | N/A |
7676

7777
> \[!TIP]
78-
> Calling `render` is equivalent to calling `setup` followed by `mount`
78+
> Calling `render` is equivalent to calling [`setup`](#setup) followed by [`mount`](#mount)
7979
>
8080
> ```ts
8181
> const { baseElement, container, mountOptions } = setup(

0 commit comments

Comments
 (0)