-
Notifications
You must be signed in to change notification settings - Fork 194
75 lines (66 loc) · 2.2 KB
/
goreleaser.yml
File metadata and controls
75 lines (66 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: goreleaser
on:
push:
tags:
- 'v*.*.*'
workflow_dispatch:
jobs:
goreleaser:
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
-
name: Install upx
run: sudo apt install upx zip -y
continue-on-error: true
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --rm-dist --skip-validate
workdir: v2/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOPATH: "/home/runner/go"
- name: cat mod
run: cat v2/go.mod
- name: Set up Go 1.11
uses: actions/setup-go@v3
with:
go-version: '1.11'
- name: Compile for Windows x64
run: go build -o dist/gogo_windowsxp_amd64.exe -ldflags "-s -w -X 'github.com/chainreactors/gogo/v2/internal/core.ver=${{ github.ref }}'" -tags="forceposix" -asmflags "all=-trimpath=${{ env.GOPATH }}" -gcflags "all=-trimpath=${{ env.GOPATH }}" .
env:
GOOS: windows
GOARCH: amd64
working-directory: v2
- name: Compile for Windows x86
run: go build -o dist/gogo_windowsxp_386.exe -ldflags "-s -w -X 'github.com/chainreactors/gogo/v2/internal/core.ver=${{ github.ref }}'" -tags="forceposix" -asmflags "all=-trimpath=${{ env.GOPATH }}" -gcflags "all=-trimpath=${{ env.GOPATH }}" .
env:
GOOS: windows
GOARCH: '386'
working-directory: v2
- name: Zip files
run: zip -r v2/dist/gogo_archive.zip v2/dist/gogo* tools/* README.md
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: v2/dist/gogo*
tag: ${{ github.ref }}
overwrite: true
file_glob: true
draft: true