-
Notifications
You must be signed in to change notification settings - Fork 0
343 lines (289 loc) · 10.8 KB
/
release.yml
File metadata and controls
343 lines (289 loc) · 10.8 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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
permissions:
contents: write
id-token: write
jobs:
validate-release-version:
name: Validate Tag and Cargo Version
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Verify Cargo.lock is tracked
run: git ls-files --error-unmatch Cargo.lock >/dev/null
- name: Ensure tag matches Cargo.toml version
if: startsWith(github.ref, 'refs/tags/v')
env:
TAG: ${{ github.ref_name }}
run: |
TAG_VERSION="${TAG#v}"
CARGO_VERSION="$(awk -F '"' '/^version = / {print $2; exit}' Cargo.toml)"
if [ -z "$CARGO_VERSION" ]; then
echo "Could not read package version from Cargo.toml" >&2
exit 1
fi
if [ "$TAG_VERSION" != "$CARGO_VERSION" ]; then
echo "Tag version ($TAG_VERSION) does not match Cargo.toml version ($CARGO_VERSION)." >&2
echo "Bump Cargo.toml, run cargo check, commit Cargo.lock, then retag." >&2
exit 1
fi
build-release-macos:
name: Build release assets (darwin-arm64)
runs-on: macos-14
needs: validate-release-version
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
cache-dependency-path: web/package-lock.json
- name: Install frontend dependencies
run: |
cd web
npm ci
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin
- name: Cache Rust
uses: Swatinem/rust-cache@v2
- name: Install cargo-bundle
uses: taiki-e/cache-cargo-install-action@v2
with:
tool: cargo-bundle
- name: Build app bundle
run: |
scripts/macos-build-bundle.sh prod aarch64-apple-darwin
APP_PATH="$(find target/aarch64-apple-darwin -path '*/bundle/osx/*.app' -maxdepth 6 | head -n1)"
if [ -z "$APP_PATH" ]; then
echo "No app bundle found" >&2
exit 1
fi
DMG_PATH="$(dirname "$APP_PATH")/attn.dmg"
echo "APP_PATH=$APP_PATH" >> "$GITHUB_ENV"
echo "DMG_PATH=$DMG_PATH" >> "$GITHUB_ENV"
- name: Prepare binary assets
env:
TAG: ${{ startsWith(github.ref, 'refs/tags/v') && github.ref_name || format('vdev-{0}', github.run_number) }}
run: |
VERSION="${TAG#v}"
mkdir -p dist
cp "target/aarch64-apple-darwin/release/attn" "dist/attn-v${VERSION}-darwin-arm64"
chmod +x "dist/attn-v${VERSION}-darwin-arm64"
shasum -a 256 "dist/attn-v${VERSION}-darwin-arm64" > "dist/attn-v${VERSION}-darwin-arm64.sha256"
- name: Import code signing certificate
id: signing
env:
CERTIFICATE_BASE64: ${{ secrets.APPLE_CERTIFICATE }}
CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
run: |
CERTIFICATE_PATH="$RUNNER_TEMP/build_certificate.p12"
KEYCHAIN_PATH="$RUNNER_TEMP/app-signing.keychain-db"
if [ -z "$CERTIFICATE_BASE64" ] || [ -z "$CERTIFICATE_PASSWORD" ] || [ -z "$KEYCHAIN_PASSWORD" ]; then
echo "Missing required signing secrets." >&2
exit 1
fi
echo -n "$CERTIFICATE_BASE64" | base64 --decode > "$CERTIFICATE_PATH" || \
echo -n "$CERTIFICATE_BASE64" | base64 -D > "$CERTIFICATE_PATH"
security create-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH"
security set-keychain-settings -lut 21600 "$KEYCHAIN_PATH"
security unlock-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH"
security import "$CERTIFICATE_PATH" -P "$CERTIFICATE_PASSWORD" -A -t cert -f pkcs12 -k "$KEYCHAIN_PATH"
security set-key-partition-list -S apple-tool:,apple: -k "$KEYCHAIN_PASSWORD" "$KEYCHAIN_PATH"
security list-keychain -d user -s "$KEYCHAIN_PATH"
echo "KEYCHAIN_PATH=$KEYCHAIN_PATH" >> "$GITHUB_ENV"
- name: Sign app bundle
env:
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
run: scripts/macos-sign-app.sh "$APP_PATH" "$APPLE_SIGNING_IDENTITY"
- name: Prepare app zip assets
env:
TAG: ${{ startsWith(github.ref, 'refs/tags/v') && github.ref_name || format('vdev-{0}', github.run_number) }}
run: |
VERSION="${TAG#v}"
APP_DIR="$(dirname "$APP_PATH")"
APP_NAME="$(basename "$APP_PATH")"
ZIP_NAME="attn-v${VERSION}-darwin-arm64.app.zip"
cd "$APP_DIR"
ditto -c -k --sequesterRsrc --keepParent "$APP_NAME" "$ZIP_NAME"
mv "$ZIP_NAME" "$GITHUB_WORKSPACE/dist/$ZIP_NAME"
shasum -a 256 "$GITHUB_WORKSPACE/dist/$ZIP_NAME" > "$GITHUB_WORKSPACE/dist/$ZIP_NAME.sha256"
- name: Create DMG
env:
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
run: scripts/macos-create-dmg.sh "$APP_PATH" "$DMG_PATH"
- name: Notarize DMG
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: scripts/macos-notarize-dmg.sh "$DMG_PATH"
- name: Prepare DMG assets
env:
TAG: ${{ startsWith(github.ref, 'refs/tags/v') && github.ref_name || format('vdev-{0}', github.run_number) }}
run: |
VERSION="${TAG#v}"
cp "$DMG_PATH" "dist/attn-v${VERSION}-darwin-arm64.dmg"
shasum -a 256 "dist/attn-v${VERSION}-darwin-arm64.dmg" > "dist/attn-v${VERSION}-darwin-arm64.dmg.sha256"
- name: Upload release artifacts
uses: actions/upload-artifact@v4
with:
name: release-darwin-arm64
path: dist/*
retention-days: 7
- name: Cleanup keychain
if: always()
run: |
if [ -n "${KEYCHAIN_PATH:-}" ] && [ -f "$KEYCHAIN_PATH" ]; then
security delete-keychain "$KEYCHAIN_PATH"
fi
build-release-linux:
name: Build release assets (linux-x64)
runs-on: ubuntu-latest
needs: validate-release-version
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libayatana-appindicator3-dev
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
cache-dependency-path: web/package-lock.json
- name: Install frontend dependencies
run: |
cd web
npm ci
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-gnu
- name: Cache Rust
uses: Swatinem/rust-cache@v2
- name: Build release binary
run: cargo build --release --target x86_64-unknown-linux-gnu
- name: Prepare binary assets
env:
TAG: ${{ startsWith(github.ref, 'refs/tags/v') && github.ref_name || format('vdev-{0}', github.run_number) }}
run: |
VERSION="${TAG#v}"
mkdir -p dist
cp "target/x86_64-unknown-linux-gnu/release/attn" "dist/attn-v${VERSION}-linux-x64"
chmod +x "dist/attn-v${VERSION}-linux-x64"
sha256sum "dist/attn-v${VERSION}-linux-x64" > "dist/attn-v${VERSION}-linux-x64.sha256"
- name: Upload release artifacts
uses: actions/upload-artifact@v4
with:
name: release-linux-x64
path: dist/*
retention-days: 7
publish-release:
name: Publish GitHub Release
runs-on: ubuntu-latest
needs: [build-release-macos, build-release-linux]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Download macOS artifacts
uses: actions/download-artifact@v4
with:
path: dist
name: release-darwin-arm64
- name: Download Linux artifacts
uses: actions/download-artifact@v4
with:
path: dist
name: release-linux-x64
- name: Create or update release
env:
GH_TOKEN: ${{ github.token }}
TAG: ${{ github.ref_name }}
run: |
if gh release view "$TAG" >/dev/null 2>&1; then
echo "Release $TAG already exists; uploading updated assets."
else
gh release create "$TAG" \
--title "$TAG" \
--notes "Automated release for $TAG."
fi
gh release upload "$TAG" dist/* --clobber
publish-crates:
name: Publish crates.io
runs-on: ubuntu-latest
needs: [publish-release]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libayatana-appindicator3-dev
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
cache-dependency-path: web/package-lock.json
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Verify crate builds with locked dependencies
run: cargo check --locked
- name: Publish crate
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish --locked
publish-npm:
name: Publish npm
runs-on: ubuntu-latest
needs: publish-release
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Set package version from tag
run: npm version "${GITHUB_REF_NAME#v}" --no-git-tag-version --allow-same-version
- name: Publish package
run: npm publish --access public
update-homebrew:
name: Update Homebrew tap
runs-on: ubuntu-latest
needs: publish-release
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Update tap formula
env:
GH_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
run: |
VERSION="${GITHUB_REF_NAME#v}"
./homebrew/update-tap.sh "$VERSION"