-
Notifications
You must be signed in to change notification settings - Fork 32
98 lines (95 loc) · 2.64 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
name: release
on:
push:
tags:
- "v*.*.*"
permissions:
contents: write
jobs:
build_fe:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 21
- name: Build
working-directory: frontend
run: |
npm i && npm run build
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: fe_dist
path: frontend/build
retention-days: 1
build_be:
needs: build_fe
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download the dist of FE
uses: actions/download-artifact@v4
with:
name: fe_dist
path: frontend/build/
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Build for Darwin
if: ${{ startsWith(matrix.os, 'macos') }}
uses: goreleaser/goreleaser-action@v6
with:
args: release --skip=publish --clean --config .goreleaser.darwin.yaml
- name: Prepare for Linux and Windows
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
sudo apt-get install -y gcc-aarch64-linux-gnu gcc-mingw-w64
- name: Build for Linux and Windows
if: ${{ startsWith(matrix.os, 'ubuntu') }}
uses: goreleaser/goreleaser-action@v6
with:
args: release --skip=publish --clean --config .goreleaser.linux.yaml
- name: Upload dist
uses: actions/upload-artifact@v4
with:
name: "be_${{ matrix.os }}_dist"
path: |
dist/*.zip
dist/*_checksums.txt
retention-days: 1
publish:
needs: [build_be]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # for goreleaser generating changelog
- name: Download the dist of BE
uses: actions/download-artifact@v4
with:
pattern: be_*_dist
path: ./build/
merge-multiple: true
- name: Merge checksums
working-directory: ./build
run: |
cat *_checksums.txt >> checksums.txt
rm *_checksums.txt
- name: Publish release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
args: release --config .goreleaser.yaml