Skip to content

Commit

Permalink
Update go-windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Tech-Dex committed Jul 28, 2023
1 parent 548e433 commit 66ad418
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
- name: Save build artifact
run: |
if not exist build (
mkdir build
) else (
echo 'build' directory already exists
)
if (Test-Path -Path "build" -PathType Container) {
Write-Host "'build' directory already exists"
} else {
New-Item -ItemType Directory -Path "build"
}
mv main.exe build/
mv cmd/fyne-app/PartsPal.exe build/
git config --local user.email "action@github.com"
Expand Down

0 comments on commit 66ad418

Please sign in to comment.