Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add system proxy support #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,25 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17.0-rc2
stable: 'false'
- name: setup-msbuild
uses: microsoft/setup-[email protected]

- name: Restore NuGet
run: msbuild vscode-winsta11er.sln -t:restore -p:RestorePackagesConfig=true

- name: Build x64
run: |
$env:GOARCH="amd64"
go build -v -o "vscode-winsta11er-x64.exe" -ldflags -H=windowsgui
msbuild vscode-winsta11er.sln /p:Configuration=Release /p:Platform=x64
- name: Build ia32
run: |
$env:GOARCH="386"
go build -v -o "vscode-winsta11er-ia32.exe" -ldflags -H=windowsgui
msbuild vscode-winsta11er.sln /p:Configuration=Release /p:Platform=x86
- name: Build arm64
run: |
$env:GOARCH="arm64"
go build -v -o "vscode-winsta11er-arm64.exe" -ldflags -H=windowsgui
msbuild vscode-winsta11er.sln /p:Configuration=Release /p:Platform=ARM64

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
*.exe
**/vscode-winsta11er-*.exe
Loading