-
Notifications
You must be signed in to change notification settings - Fork 2
171 lines (138 loc) · 5.29 KB
/
release.yml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
name: Release
on:
push:
tags:
- v*
env:
FORCE_COLOR: true
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.17.1"
- name: Checkout code
uses: actions/checkout@v2
- name: Install Linux dependencies
run: |
sudo apt update
sudo apt install -y wget pkg-config libsdl2-dev
- name: Install Go dependencies
run: go get -v
- name: Build
run: CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -v -tags static -ldflags "-s -w"
- name: Update executable
run: |
chmod +x impregnate
mv impregnate impregnate.Linux
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: impregnate-linux
path: impregnate.Linux
build-mac:
runs-on: macos-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.17.1"
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: brew install pkg-config sdl2
- name: Install Go dependencies
run: go get -v
- name: Build
run: CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -v -tags static -ldflags "-s -w"
- name: Update executable
run: |
chmod +x impregnate
- name: Generate MacOS bundle
run: |
mkdir -p Impregnate.app/Contents/MacOS
mkdir -p Impregnate.app/Contents/Resources
wget https://nova-vps.ml/~alyxia/static/Info.plist -O Impregnate.app/Contents/Info.plist
mv impregnate Impregnate.app/Contents/MacOS/impregnate
wget https://nova-vps.ml/~alyxia/static/icon.icns -O Impregnate.app/Contents/Resources/icon.icns
zip -r Impregnate.MacOS.zip Impregnate.app
mv Impregnate.MacOS.zip impregnate.MacOS.zip
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: impregnate-macos
path: impregnate.MacOS.zip
build-windows:
runs-on: windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.17.1"
- name: Checkout code
uses: actions/checkout@v2
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
- name: Install Windows dependencies
shell: msys2 {0}
run: |
pacman -S --noconfirm git mingw-w64-x86_64-gcc mingw-w64-x86_64-SDL2 mingw-w64-x86_64-go
export GOROOT=/mingw64/lib/go
export GOPATH=/mingw64
- name: Install Go dependencies
shell: msys2 {0}
run: |
export GOROOT=/mingw64/lib/go
export GOPATH=/mingw64
go get -v
go install github.com/tc-hib/go-winres@latest
- name: Build
shell: msys2 {0}
run: |
export GOROOT=/mingw64/lib/go
export GOPATH=/mingw64
go-winres make --product-version "git-tag"
CGO_ENABLED=1 GOOS=windows GOARCH=amd64 go build -v -tags static -ldflags "-s -w -H=windowsgui"
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: impregnate-windows
path: impregnate.exe
release:
runs-on: ubuntu-latest
needs: [build-linux, build-mac, build-windows]
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: impregnate-linux
path: linux
- uses: actions/download-artifact@v2
with:
name: impregnate-macos
path: macos
- uses: actions/download-artifact@v2
with:
name: impregnate-windows
path: windows
- name: Get some values needed for the release
id: release_values
run: |
echo "::set-output name=date::$(date '+%Y-%m-%d')"
echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
- name: Create the release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.ALYX_TOKEN }}
with:
name: ${{ steps.release_values.outputs.tag }}, ${{ steps.release_values.outputs.date }}
draft: true
prerelease: false
body_path: .github/release_body_template.md
files: |
linux/impregnate.Linux
macos/impregnate.MacOS.zip
windows/impregnate.exe