-
Notifications
You must be signed in to change notification settings - Fork 6
60 lines (49 loc) · 1.36 KB
/
build-binaries.yaml
File metadata and controls
60 lines (49 loc) · 1.36 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
name: build-binaries
on:
workflow_dispatch:
release:
types: [released]
permissions:
contents: write
jobs:
build-binary:
strategy:
matrix:
include:
- os: ubuntu-latest
artifact: docula-linux-x64
binary: docula
- os: macos-latest
artifact: docula-macos-arm64
binary: docula
- os: macos-13
artifact: docula-macos-x64
binary: docula
- os: windows-latest
artifact: docula-windows-x64
binary: docula.exe
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install Dependencies
run: pnpm install
- name: Build Binary
run: pnpm build:binary
- name: Upload Binary Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: dist/${{ matrix.binary }}
- name: Upload to Release
if: github.event_name == 'release'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: gh release upload ${{ github.event.release.tag_name }} dist/${{ matrix.binary }}#${{ matrix.artifact }}