Skip to content

Commit 086b64f

Browse files
win try 2
1 parent 531d9d6 commit 086b64f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/go.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
shell: bash
6868
run: |
6969
if [ "${{ matrix.os }}" = "windows-latest" ]; then
70-
mv cli-v2.exe cli-v2
70+
# Keep the .exe extension for Windows
71+
echo "Using Windows binary with .exe extension"
7172
elif [ "${{ matrix.os }}" = "macos-latest" ]; then
7273
mv cli-v2-macos cli-v2
7374
else
@@ -90,6 +91,10 @@ jobs:
9091
if: matrix.os == 'windows-latest'
9192
shell: pwsh
9293
run: |
94+
Get-ChildItem
95+
Write-Host "Current directory contents:"
96+
dir
97+
Write-Host "Attempting to run CLI..."
9398
.\cli-v2.exe install
9499
95100
release:

0 commit comments

Comments
 (0)