Skip to content

Commit 1691270

Browse files
justin808claude
andcommitted
Fix examples workflow yalc publish command
Changes `yarn yalc publish` to `yarn run yalc:publish`. The command `yarn yalc publish` tries to run the yalc binary directly, which fails. The correct command is `yarn run yalc:publish` which runs the npm script defined in package.json that publishes all workspace packages via `yarn workspaces run yalc:publish`. This was causing Generator tests to fail because packages weren't being published to yalc correctly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 31431f9 commit 1691270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
- name: yalc publish for react-on-rails
148148
# Use yarn workspace script to publish all workspace packages to yalc
149149
# Runs the "yalc:publish" script defined in each workspace's package.json
150-
run: yarn yalc publish
150+
run: yarn run yalc:publish
151151
- name: Install Ruby Gems for package
152152
run: |
153153
cd react_on_rails

0 commit comments

Comments
 (0)