Skip to content

Commit e072d11

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 792466b commit e072d11

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
@@ -72,7 +72,7 @@ jobs:
7272
cd ..
7373
yarn run yalc:publish
7474
cd react_on_rails_pro
75-
yarn run yalc:publish
75+
yarn && yalc publish
7676
7777
- name: Install Node modules with Yarn for Pro dummy app
7878
run: cd spec/dummy && yarn install --frozen-lockfile --ignore-scripts --no-progress --no-emoji
@@ -192,7 +192,7 @@ jobs:
192192
cd ..
193193
yarn run yalc:publish
194194
cd react_on_rails_pro
195-
yarn run yalc:publish
195+
yarn && yalc publish
196196
197197
- name: Install Node modules with Yarn for Pro dummy app
198198
run: cd spec/dummy && yarn install --frozen-lockfile --ignore-scripts --no-progress --no-emoji
@@ -384,7 +384,7 @@ jobs:
384384
cd ..
385385
yarn run yalc:publish
386386
cd react_on_rails_pro
387-
yarn run yalc:publish
387+
yarn && yalc publish
388388
389389
- name: Install Node modules with Yarn for Pro dummy app
390390
run: cd spec/dummy && yarn install --frozen-lockfile --ignore-scripts --no-progress --no-emoji

0 commit comments

Comments
 (0)