-
Notifications
You must be signed in to change notification settings - Fork 23
54 lines (47 loc) · 1.29 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
name: Release a draft release
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ${{ matrix.os }}
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
strategy:
matrix:
os: [
macos-latest,
ubuntu-latest,
windows-latest
]
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
node-version: 20.11.0
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Build & release Electron app
shell: bash
env:
# macOS Code signing certificates
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# macOS notarization API key
APPLEID: ${{ secrets.APPLEID }}
APPLEIDPASS: ${{ secrets.APPLEIDPASSWORD }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SIGN: true
run: |
pnpm install
pnpm build
- name: Upload artifact
uses: actions/[email protected]
with:
# Artifact name
name: ${{ matrix.os }}-artifact
# Directory containing files to upload
path: release/**/*