Skip to content

Commit 500084b

Browse files
committed
v1.0
1 parent 74e1cc3 commit 500084b

1 file changed

Lines changed: 19 additions & 4 deletions

File tree

.github/workflows/proxyreset.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,29 @@ jobs:
1818
with:
1919
go-version: '1.16'
2020

21-
- name: Build proxy reset executable (64-bit)
21+
- name: Build proxy reset executable (ia32)
22+
run: |
23+
$env:GOARCH="386"
24+
$env:GOOS="windows"
25+
go build -o proxyReset-ia32.exe proxyreset.go
26+
27+
- name: Build proxy reset executable (x64)
2228
run: |
2329
$env:GOARCH="amd64"
2430
$env:GOOS="windows"
25-
go build -o proxyreset.exe proxyreset.go
31+
go build -o proxyReset-x64.exe proxyreset.go
32+
33+
- name: Build proxy reset executable (arm64)
34+
run: |
35+
$env:GOARCH="arm64"
36+
$env:GOOS="windows"
37+
go build -o proxyReset-arm64.exe proxyreset.go
2638
2739
- name: Upload to releases
2840
uses: ncipollo/release-action@v1
2941
with:
30-
artifacts: 'proxyreset.exe'
31-
tag: '${{ github.event.head_commit.message }}'
42+
artifacts: |
43+
proxyReset-ia32.exe
44+
proxyReset-x64.exe
45+
proxyReset-arm64.exe
46+
tag: '${{ github.event.head_commit.message }}'

0 commit comments

Comments
 (0)