forked from casbin/casbin-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (62 loc) · 1.87 KB
/
build.yml
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
name: Build and Release Electron App
on:
push:
tags:
- 'v*.*.*' # 仅在版本标签推送时触发
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18' # 使用 Node.js 18
- name: Install dependencies
run: yarn install
- name: Build Electron app
run: yarn dist
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: electron-app-${{ matrix.os }}
path: dist/
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download macOS build artifacts
uses: actions/download-artifact@v2
with:
name: electron-app-macos-latest
- name: Download Ubuntu build artifacts
uses: actions/download-artifact@v2
with:
name: electron-app-ubuntu-latest
- name: Download Windows build artifacts
uses: actions/download-artifact@v2
with:
name: electron-app-windows-latest
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist/
asset_name: electron-app-${{ matrix.os }}.zip
asset_content_type: application/zip