Skip to content

Commit 564e077

Browse files
gold-ak47claude
andcommitted
fix: npm ci --omit=optional to skip missing platform packages
Platform packages don't exist on npm yet. --omit=optional lets npm ci succeed without them. They get published in the same release workflow. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a363af2 commit 564e077

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
node-version: '20'
3232

3333
- name: Install dependencies
34-
run: npm ci
34+
run: npm ci --omit=optional
3535

3636
- name: Semantic Release (dry run)
3737
id: semantic
@@ -116,7 +116,7 @@ jobs:
116116
registry-url: 'https://registry.npmjs.org'
117117

118118
- name: Install dependencies
119-
run: npm ci
119+
run: npm ci --omit=optional
120120

121121
- name: Download all artifacts
122122
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)