Add .exe to Windows bins
Build binaries / Explore-Gitea-Actions (push) Successful in 19s Details

This commit is contained in:
Evan 2023-10-16 21:59:44 -04:00
parent a8ef08dfa0
commit 599dd5fdd2
1 changed files with 2 additions and 2 deletions

View File

@ -33,13 +33,13 @@ jobs:
GOOS=windows GOARCH=amd64 \
go build \
-ldflags="-s -w" \
-o windows-amd64
-o windows-amd64.exe
- name: Go Build Windows arm64
run: |
GOOS=windows GOARCH=arm64 \
go build \
-ldflags="-s -w" \
-o windows-arm64
-o windows-arm64.exe
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions