-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (40 loc) · 1.2 KB
/
publish.yml
File metadata and controls
48 lines (40 loc) · 1.2 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
name: Publish
on:
push:
branches:
- main
workflow_dispatch:
jobs:
publish:
# To enable auto publishing to github, update your electron publisher
# config in package.json > "build" and remove the conditional below
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.0.1
with:
version: latest
- name: Install Node and NPM
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
- name: Install and build
run: |
pnpm install
pnpm run build
- name: Publish releases
env:
# # These values are used for auto updates signing
# APPLE_ID: ${{ secrets.APPLE_ID }}
# APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS }}
# CSC_LINK: ${{ secrets.CSC_LINK }}
# CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# This is used for uploading release assets to github
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pnpm electron-builder --publish always --win --mac --linux