generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't install GH CLI in Windows #170
Comments
There is a workaround by specifying the undocumented input - name: Install the gh cli
uses: ksivamuthu/actions-setup-gh-cli@v3
with:
version: 2.67.0
archive_format: zip
platform: windows But then
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This action attempts to download the
gh
CLI fromhttps://github.com/cli/cli/releases/download/v2.67.0/gh_2.67.0_win32_amd64.zip
but the CLI for window is not released with that name. This is a valid download URL:https://github.com/cli/cli/releases/download/v2.67.0/gh_2.67.0_windows_amd64.zip
.The problem is that GH CLI releases Windows binaries where the platform tag is not
win32
butwindows
.Example failed workflow
P.S. I really like this project. Simple and effective. If you agree I can send a PR to fix this issue.
The text was updated successfully, but these errors were encountered: