-
Notifications
You must be signed in to change notification settings - Fork 0
182 lines (149 loc) · 5.14 KB
/
release.yml
File metadata and controls
182 lines (149 loc) · 5.14 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
name: Release
on:
push:
tags:
- 'v*.*.*'
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: write
packages: read
actions: read
env:
NODE_VERSION: 20
PNPM_VERSION: 10.0.0
CI: true
FORCE_COLOR: 1
jobs:
preflight:
name: Preflight Validation
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Print context
run: |
echo "Ref: $GITHUB_REF"
echo "Tag: ${{ github.ref_name }}"
echo "Actor: $GITHUB_ACTOR"
echo "SHA: $GITHUB_SHA"
- name: Validate tag format
run: |
if [[ ! "${{ github.ref_name }}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "Invalid tag format"
exit 1
fi
- name: Ensure clean git tree
run: |
if [[ -n "$(git status --porcelain)" ]]; then
echo "Working tree is dirty"
exit 1
fi
- name: Extract version from package.json
run: |
VERSION=$(jq -r .version package.json)
TAG="${{ github.ref_name }}"
TAG_VERSION="${TAG#v}"
if [[ "$VERSION" != "$TAG_VERSION" ]]; then
echo "package.json version ($VERSION) != tag ($TAG_VERSION)"
exit 1
fi
build-windows:
name: Build Windows & Create Release
runs-on: windows-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
- uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
- name: pnpm store cache
uses: actions/cache@v5
with:
path: ~/.pnpm-store
key: windows-pnpm-${{ hashFiles('pnpm-lock.yaml') }}
- name: Install deps
run: pnpm install --frozen-lockfile
- name: Build Windows
run: pnpm run build:windows
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
generate_release_notes: true
files: |
apps/desktop/build/Datary-Setup-*.exe
apps/desktop/build/Datary-*.exe
apps/desktop/build/Datary-*.msi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-mac:
name: MacOS Build
runs-on: macos-latest
needs: build-windows
timeout-minutes: 45
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
- uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
- name: Install deps
run: pnpm install --frozen-lockfile
- name: Build macOS
run: pnpm run build:mac
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload macOS assets
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
overwrite_files: true
files: |
apps/desktop/build/Datary-*.dmg
apps/desktop/build/Datary-*.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-linux:
name: Linux Build
runs-on: ubuntu-latest
needs: build-windows
timeout-minutes: 45
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
- uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
- name: Install deps
run: pnpm install --frozen-lockfile
- name: Build Linux
run: pnpm run build:linux
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Linux assets
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
overwrite_files: true
files: |
apps/desktop/build/Datary-*.AppImage
apps/desktop/build/Datary-*.deb
apps/desktop/build/Datary-*.rpm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}