Commit c2b7464
authored
fix(ci): Add pnpm and Node.js setup to release workflow (#1247)
## Summary
Fix the release workflow which was failing with:
```
bash: scripts/bump-version.sh: line 19: pnpm: command not found
```
## Changes
Added pnpm and Node.js setup steps to the release workflow before Craft
runs the preReleaseCommand. This ensures `pnpm` is available when
`bump-version.sh` executes.
The setup steps match those used in `build.yml`:
- `pnpm/action-setup@v4` - reads pnpm version from `packageManager` in
package.json
- `actions/setup-node@v6` - reads Node version from the `volta` section
in package.json1 parent 805c148 commit c2b7464
1 file changed
+9
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
40 | 49 | | |
41 | 50 | | |
42 | 51 | | |
| |||
0 commit comments