We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 531d9d6 commit 086b64fCopy full SHA for 086b64f
.github/workflows/go.yml
@@ -67,7 +67,8 @@ jobs:
67
shell: bash
68
run: |
69
if [ "${{ matrix.os }}" = "windows-latest" ]; then
70
- mv cli-v2.exe cli-v2
+ # Keep the .exe extension for Windows
71
+ echo "Using Windows binary with .exe extension"
72
elif [ "${{ matrix.os }}" = "macos-latest" ]; then
73
mv cli-v2-macos cli-v2
74
else
@@ -90,6 +91,10 @@ jobs:
90
91
if: matrix.os == 'windows-latest'
92
shell: pwsh
93
94
+ Get-ChildItem
95
+ Write-Host "Current directory contents:"
96
+ dir
97
+ Write-Host "Attempting to run CLI..."
98
.\cli-v2.exe install
99
100
release:
0 commit comments