Skip to content

Commit 6e0ec3d

Browse files
dskvrclaude
andcommitted
Fix artifact download path in publish workflow
Download artifacts to packages/ directory instead of root directory so dist files end up in the correct location for npm publish. The artifacts structure is: - core/dist/ - wrapper/dist/ And they need to be at: - packages/core/dist/ - packages/wrapper/dist/ 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 5a3146e commit 6e0ec3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
uses: actions/download-artifact@v4
7979
with:
8080
name: built-packages
81-
path: .
81+
path: packages
8282

8383
- name: Install Dependencies
8484
run: pnpm install --frozen-lockfile --ignore-scripts

0 commit comments

Comments
 (0)