-
-
Notifications
You must be signed in to change notification settings - Fork 28
235 lines (209 loc) · 8.46 KB
/
release.yaml
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# Copyright (c) 2021 Blacknon. All rights reserved.
# Use of this source code is governed by an MIT license
# that can be found in the LICENSE file.
# reference:
# - https://motemen.hatenablog.com/entry/2019/11/github-actions-crossbuild-rust
# - https://github.com/motemen/lssh/blob/97d3745dcc8931a1d75217573d5ca60705be632f/.github/workflows/release.yml
# - https://github.com/greymd/teip/blob/master/.github/workflows/release.yml
name: Release Job.
on:
push:
branches:
- master
jobs:
# build rust binary
build:
strategy:
matrix:
include:
- goos: linux
goarch: amd64
os: ubuntu-latest
ext: tar.gz
- goos: linux
goarch: amd64
os: ubuntu-latest
ext: rpm
- goos: linux
goarch: amd64
os: ubuntu-latest
ext: deb
- goos: darwin
goarch: amd64
os: macos-latest
ext: tar.gz
- goos: darwin
goarch: arm64
os: macos-latest
ext: tar.gz
- goos: windows
goarch: amd64
os: windows-latest
ext: zip
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up Go 1.22
uses: actions/setup-go@v1
with:
go-version: 1.22
- name: Get version
id: package_version
shell: bash
run: |
VERSION="$(go run ./cmd/lssh/ --version | awk '{print $NF}')"
echo "::set-output name=version::$VERSION"
- name: Build binary
run: |
go build -o lssh.${{ matrix.goos }}_${{ matrix.goarch }} ./cmd/lssh
go build -o lscp.${{ matrix.goos }}_${{ matrix.goarch }} ./cmd/lscp
go build -o lsftp.${{ matrix.goos }}_${{ matrix.goarch }} ./cmd/lsftp
- name: Create package file
if: ${{ (matrix.ext == 'tar.gz') || (matrix.ext == 'rpm') || (matrix.ext == 'deb') }}
run: |
_TAR=lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.tar.gz
mkdir -p package/bin
mv lssh.${{ matrix.goos }}_${{ matrix.goarch }} package/bin/lssh
mv lscp.${{ matrix.goos }}_${{ matrix.goarch }} package/bin/lscp
mv lsftp.${{ matrix.goos }}_${{ matrix.goarch }} package/bin/lsftp
## mkdir -p package/man
## cp man/lssh.1 package/man
cp -r completion package/
## sed -i is not used due to difference between macOS and Linux
perl -i -pe s/___VERSION___/${{ steps.package_version.outputs.version }}/ ./package/.tar2package.yml
## tar czvf "$_TAR" -C "$PWD/package" completion bin man .tar2package.yml
tar czvf "$_TAR" -C "$PWD/package" completion bin .tar2package.yml
- name: Create package file(Windows)
if: matrix.ext == 'zip'
run: |
mkdir package/bin
move lssh.${{ matrix.goos }}_${{ matrix.goarch }} package/bin/lssh.exe
move lscp.${{ matrix.goos }}_${{ matrix.goarch }} package/bin/lscp.exe
move lsftp.${{ matrix.goos }}_${{ matrix.goarch }} package/bin/lsftp.exe
powershell Compress-Archive package lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip
# use: https://github.com/greymd/tar2package
- name: Build rpm
id: rpm
if: matrix.ext == 'rpm'
run: |
_TAR=lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.tar.gz
docker run -i "greymd/tar2rpm:1.0.1" < "$_TAR" > lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.rpm
echo ::set-output name=sha256::$( sha256sum lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.rpm | awk '{print $1}' )
# use: https://github.com/greymd/tar2package
- name: Build deb
id: deb
if: matrix.ext == 'deb'
run: |
_TAR=lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.tar.gz
docker run -i "greymd/tar2deb:1.0.1" < "$_TAR" > lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.deb
echo ::set-output name=sha256::$( sha256sum lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.deb | awk '{print $1}' )
- name: README for rpm
if: matrix.ext == 'rpm'
run: |
_TAR=lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.rpm
- name: Upload artifact
if: matrix.ext == 'rpm'
uses: actions/upload-artifact@v1
with:
name: build-${{ matrix.goos }}_${{ matrix.goarch }}
path: lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.rpm
- name: README for deb
if: matrix.ext == 'deb'
run: |
_TAR=lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.deb
- name: Upload artifact
if: matrix.ext == 'deb'
uses: actions/upload-artifact@v1
with:
name: build-${{ matrix.goos }}_${{ matrix.goarch }}
path: lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.deb
- name: Upload artifact
if: matrix.ext == 'tar.gz'
uses: actions/upload-artifact@v1
with:
name: build-${{ matrix.goos }}_${{ matrix.goarch }}
path: lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.tar.gz
- name: Upload artifact
if: matrix.ext == 'zip'
uses: actions/upload-artifact@v1
with:
name: build-${{ matrix.goos }}_${{ matrix.goarch }}
path: lssh_${{ steps.package_version.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.zip
# create package release
create-release:
needs:
- build
runs-on: ubuntu-latest
outputs:
version: ${{ steps.package_version.outputs.version }}
steps:
- uses: actions/checkout@v1
- name: Get version
id: package_version
shell: bash
run: |
VERSION="$(go run ./cmd/lssh/ --version | awk '{print $NF}')"
echo "::set-output name=version::$VERSION"
- id: create-release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.package_version.outputs.version }}
release_name: Version ${{ steps.package_version.outputs.version }}
draft: true
prerelease: false
- run: |
echo '${{ steps.create-release.outputs.upload_url }}' > release_upload_url.txt
- uses: actions/upload-artifact@v1
with:
name: create-release
path: release_upload_url.txt
upload-release:
strategy:
matrix:
include:
- goos: linux
goarch: amd64
os: ubuntu-latest
ext: tar.gz
- goos: linux
goarch: amd64
os: ubuntu-latest
ext: rpm
- goos: linux
goarch: amd64
os: ubuntu-latest
ext: deb
- goos: darwin
goarch: amd64
os: macos-latest
ext: tar.gz
- goos: darwin
goarch: arm64
os: macos-latest
ext: tar.gz
- goos: windows
goarch: amd64
os: windows-latest
ext: zip
needs: [create-release]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v1
with:
name: create-release
- id: upload-url
run: |
echo "::set-output name=url::$(cat create-release/release_upload_url.txt)"
- uses: actions/download-artifact@v1
with:
name: build-${{ matrix.goos }}_${{ matrix.goarch }}
- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.upload-url.outputs.url }}
asset_path: ./build-${{ matrix.goos }}_${{ matrix.goarch }}/lssh_${{ needs.create-release.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.${{ matrix.ext }}
asset_name: lssh_${{ needs.create-release.outputs.version }}_${{ matrix.goos }}_${{ matrix.goarch }}.${{ matrix.ext }}
asset_content_type: application/octet-stream