Skip to content

Commit

Permalink
ah
Browse files Browse the repository at this point in the history
  • Loading branch information
Wraient committed Oct 26, 2024
1 parent 681e7c3 commit c0c992f
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,18 @@ jobs:

- name: Build Windows binary
run: |
echo Current directory: $(Get-Location)
echo Directory contents: $(dir)
echo Building the Windows binary...
echo "Current directory: $(Get-Location)"
echo "Directory contents:"
dir
echo "Building the Windows binary..."
set GOOS=windows
set GOARCH=amd64
go build -o curd.exe .\cmd\curd\main.go || (echo Build failed & exit 1)
echo Build completed successfully!
go build -o curd.exe .\cmd\curd\main.go
if ($LASTEXITCODE -ne 0) {
echo "Build failed"
exit 1
}
echo "Build completed successfully!"
- name: Download Inno Setup # Clean up
run: |
Expand Down

0 comments on commit c0c992f

Please sign in to comment.