-
Notifications
You must be signed in to change notification settings - Fork 1
185 lines (156 loc) · 4.41 KB
/
main.yml
File metadata and controls
185 lines (156 loc) · 4.41 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
name: Build and Release
on:
push:
tags:
- 'v*'
env:
APP_NAME: 'levelsync'
NIM_VERSION: '2.2.4'
jobs:
dll:
runs-on: ubuntu-latest
steps:
- name: Download DLLs
uses: wei/curl@master
with:
args: https://nim-lang.org/download/dlls.zip --output dlls.zip
- name: Unzip
uses: montudor/action-zip@v1
with:
args: unzip -qq dlls.zip
- name: Upload DLLs artifact
uses: actions/upload-artifact@v4
with:
name: dlls
path: |
cacert.pem
libcrypto-1_1.dll
libcrypto-1_1-x64.dll
sqlite3_32.dll
sqlite3_64.dll
libssl-1_1.dll
libssl-1_1-x64.dll
config:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Rename config file
run: mv config.default.yaml config.yaml
- name: Upload config file artifact
uses: actions/upload-artifact@v4
with:
name: config
path: config.yaml
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Nim
uses: jiro4989/setup-nim-action@v2
with:
nim-version: ${{ env.NIM_VERSION }}
- name: Build
run: nimble build -d:release --app:gui -y
- name: Upload binary artifacts
uses: actions/upload-artifact@v4
with:
name: binary-${{ matrix.os }}
path: |
${{ env.APP_NAME }}
${{ env.APP_NAME }}.exe
package-windows:
runs-on: ubuntu-latest
needs: [build, dll, config]
steps:
- name: Download Windows artifact
uses: actions/download-artifact@v4
with:
name: binary-windows-latest
- name: Download DLLs artifacts
uses: actions/download-artifact@v4
with:
name: dlls
- name: Download config artifact
uses: actions/download-artifact@v4
with:
name: config
- name: Zip binary + dlls + config
uses: montudor/action-zip@v1
with:
args: zip -qq -r ${{ env.APP_NAME }}-windows.zip .
- name: Upload Windows zip artifact
uses: actions/upload-artifact@v4
with:
name: package-windows-latest
path: ${{ env.APP_NAME }}-windows.zip
package-linux:
runs-on: ubuntu-latest
needs: [build, config]
steps:
- name: Download Linux artifact
uses: actions/download-artifact@v4
with:
name: binary-ubuntu-latest
- name: Download config artifact
uses: actions/download-artifact@v4
with:
name: config
- name: Zip binary + config
uses: montudor/action-zip@v1
with:
args: zip -qq -r ${{ env.APP_NAME }}-linux.zip .
- name: Upload Linux zip artifact
uses: actions/upload-artifact@v4
with:
name: package-linux-latest
path: ${{ env.APP_NAME }}-linux.zip
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.3.1
with:
mytoken: ${{ secrets.GITHUB_TOKEN }}
- name: Write changelog to file
run: |
cat > changelog.txt << "EOF"
${{ steps.changelog.outputs.changelog }}
EOF
- name: Upload changelog artifact
uses: actions/upload-artifact@v4
with:
name: changelog
path: changelog.txt
release:
runs-on: ubuntu-latest
needs: [changelog, package-windows, package-linux]
steps:
- name: Download Windows package
uses: actions/download-artifact@v4
with:
name: package-windows-latest
- name: Download Linux package
uses: actions/download-artifact@v4
with:
name: package-linux-latest
- name: Download changelog
uses: actions/download-artifact@v4
with:
name: changelog
- name: Create Release
uses: softprops/action-gh-release@v1
with:
body_path: changelog.txt
files: |
${{ env.APP_NAME }}-linux.zip
${{ env.APP_NAME }}-windows.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}