6
6
- ' v*.*.*'
7
7
8
8
jobs :
9
- publish :
10
- name : Publish for ${{ matrix.name }}
11
- runs-on : ${{ matrix.os }}
9
+ build :
10
+ name : Build for ${{ matrix.name }}
11
+ runs-on : ${{ matrix.runner }}
12
12
13
13
env :
14
14
CARGO : cargo
@@ -26,68 +26,70 @@ jobs:
26
26
- windows-x86
27
27
include :
28
28
- name : linux-x86-gnu
29
- os : ubuntu-latest
29
+ runner : ubuntu-latest
30
30
family : linux
31
31
arch : x86_64
32
32
target : x86_64-unknown-linux-gnu
33
33
archiver : tar.gz
34
34
asset : hl-linux-x86_64-gnu.tar.gz
35
+ skip : true
35
36
- name : linux-x86-musl
36
- os : ubuntu-latest
37
+ runner : ubuntu-latest
37
38
family : linux
38
39
arch : x86_64
39
40
target : x86_64-unknown-linux-musl
40
41
archiver : tar.gz
41
42
asset : hl-linux-x86_64-musl.tar.gz
42
43
cross : true
43
44
- name : linux-arm-gnu
44
- os : ubuntu-latest
45
+ runner : ubuntu-latest
45
46
family : linux
46
47
arch : aarch64
47
48
target : aarch64-unknown-linux-gnu
48
49
archiver : tar.gz
49
50
asset : hl-linux-arm64-gnu.tar.gz
50
51
cross : true
52
+ skip : true
51
53
- name : linux-arm-musl
52
- os : ubuntu-latest
54
+ runner : ubuntu-latest
53
55
family : linux
54
56
arch : aarch64
55
57
target : aarch64-unknown-linux-musl
56
58
archiver : tar.gz
57
59
asset : hl-linux-arm64-musl.tar.gz
58
60
cross : true
59
61
- name : macos-x86
60
- os : macos-latest
62
+ runner : macos-latest
61
63
family : macos
62
64
arch : x86_64
63
65
target : x86_64-apple-darwin
64
66
archiver : tar.gz
65
67
asset : hl-macos-x86_64.tar.gz
66
68
- name : macos-arm
67
- os : macos-latest
69
+ runner : macos-latest
68
70
family : macos
69
71
arch : aarch64
70
72
target : aarch64-apple-darwin
71
73
archiver : tar.gz
72
74
asset : hl-macos-arm64.tar.gz
73
75
- name : macos-universal
74
- os : macos-latest
76
+ runner : macos-latest
75
77
family : macos
76
78
arch : ' {aarch64,x86_64}'
77
79
target : ' {aarch64,x86_64}-apple-darwin'
78
80
archiver : tar.gz
79
81
asset : hl-macos.tar.gz
80
82
universal : true
81
83
- name : windows-x86
82
- os : windows-latest
84
+ runner : windows-latest
83
85
family : windows
84
86
arch : x86_64
85
87
target : x86_64-pc-windows-msvc
86
88
archiver : 7z
87
89
asset : hl-windows.zip
88
90
89
91
steps :
90
- - uses : actions/checkout@v3
92
+ - uses : actions/checkout@v4
91
93
92
94
- uses : actions-rust-lang/setup-rust-toolchain@v1
93
95
with :
@@ -128,9 +130,39 @@ jobs:
128
130
if : matrix.archiver == 'tar.gz' && matrix.universal == true
129
131
run : tar -C ./target -cz -f ${{ matrix.asset }} hl
130
132
133
+ - name : Store artifact
134
+ if : matrix.skip != true
135
+ uses : actions/upload-artifact@v4
136
+ with :
137
+ name : hl-${{ matrix.arch }}-${{ matrix.family }}
138
+ path : target/${{ matrix.target }}/release/hl${{ matrix.family == 'windows' && '.exe' || '' }}
139
+ retention-days : 1
140
+
131
141
- name : Upload binaries to release
142
+ if : startsWith(github.ref, 'refs/tags/v')
132
143
uses : svenstaro/upload-release-action@v2
133
144
with :
134
145
repo_token : ${{ secrets.GITHUB_TOKEN }}
135
146
file : ${{ matrix.asset }}
136
147
tag : ${{ github.ref }}
148
+
149
+ publish :
150
+ name : Publish
151
+ needs : [build]
152
+ runs-on : ubuntu-22.04
153
+ steps :
154
+ - name : Checkout Git repo
155
+ uses : actions/checkout@v4
156
+ - uses : actions/download-artifact@v4
157
+ with :
158
+ path : artifacts
159
+ - name : Set up Go
160
+ uses : actions/setup-go@v5
161
+ - name : Run GoReleaser
162
+ uses : goreleaser/goreleaser-action@v5
163
+ with :
164
+ distribution : goreleaser
165
+ version : latest
166
+ args : release --clean --skip=validate
167
+ env :
168
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments