Skip to content

Commit 53e3407

Browse files
justin808claude
andcommitted
Fix yalc publish command in Pro integration workflow
Change 'yarn run yalc:publish' to 'yarn && yalc publish' for the react_on_rails_pro package, since it doesn't have a yalc:publish script defined (only the workspace packages do). The workflow now: 1. Runs yarn run yalc:publish at root (publishes workspace packages) 2. Runs yarn && yalc publish in react_on_rails_pro (installs + publishes Pro) This matches the command structure used in the preinstall script. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 1920f0a commit 53e3407

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pro-integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
cd ..
9898
yarn run yalc:publish
9999
cd react_on_rails_pro
100-
yarn run yalc:publish
100+
yarn && yalc publish
101101
102102
- name: Install Node modules with Yarn for Pro dummy app
103103
run: cd spec/dummy && yarn install --frozen-lockfile --ignore-scripts --no-progress --no-emoji
@@ -223,7 +223,7 @@ jobs:
223223
cd ..
224224
yarn run yalc:publish
225225
cd react_on_rails_pro
226-
yarn run yalc:publish
226+
yarn && yalc publish
227227
228228
- name: Install Node modules with Yarn for Pro dummy app
229229
run: cd spec/dummy && yarn install --frozen-lockfile --ignore-scripts --no-progress --no-emoji
@@ -421,7 +421,7 @@ jobs:
421421
cd ..
422422
yarn run yalc:publish
423423
cd react_on_rails_pro
424-
yarn run yalc:publish
424+
yarn && yalc publish
425425
426426
- name: Install Node modules with Yarn for Pro dummy app
427427
run: cd spec/dummy && yarn install --frozen-lockfile --ignore-scripts --no-progress --no-emoji

0 commit comments

Comments
 (0)