Skip to content

Commit

Permalink
add flags to remove cli window
Browse files Browse the repository at this point in the history
  • Loading branch information
sbatten committed Aug 20, 2021
1 parent 0961f59 commit 3973afa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
- name: Build x64
run: |
$env:GOARCH="amd64"
go build -v -o "vscode-winsta11er-x64.exe"
go build -v -o "vscode-winsta11er-x64.exe" -ldflags -H=windowsgui
- name: Build ia32
run: |
$env:GOARCH="386"
go build -v -o "vscode-winsta11er-ia32.exe"
go build -v -o "vscode-winsta11er-ia32.exe" -ldflags -H=windowsgui
- name: Build arm64
run: |
$env:GOARCH="arm64"
go build -v -o "vscode-winsta11er-arm64.exe"
go build -v -o "vscode-winsta11er-arm64.exe" -ldflags -H=windowsgui
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down

0 comments on commit 3973afa

Please sign in to comment.