Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
release:
runs-on: macos-latest
runs-on: windows-latest

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Use Windows paths for the smoke-test executables

On the newly selected Windows runner, the Pack and smoke-test the executable step installs globally with --prefix "$install_root" but then invokes $install_root/bin/*. The npm folders documentation specifies that global executables are linked into {prefix}/bin on Unix but directly into {prefix} on Windows, so lines 55–57 reference a directory that is not created and every release run stops before the Changesets publish step. Make these invocations platform-aware or call the Windows shims from the prefix root.

Useful? React with 👍 / 👎.

timeout-minutes: 15
steps:
- name: Check out the repository
Expand Down
Loading