-
Notifications
You must be signed in to change notification settings - Fork 0
106 lines (100 loc) · 2.76 KB
/
release.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
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
name: release npm package
on:
push:
branches:
- master
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
jobs:
lint:
name: "Lint code with ESLint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm install
- run: npm run lint
build_windows:
name: "Build app [Windows]"
needs:
- lint
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm install
- run: npm run make
- shell: bash
run: |
cp -r ./out/make ./out/build_windows
- uses: actions/upload-artifact@v3
with:
name: dist-windows
path: ./out/build_windows
build_linux:
name: "Build app [Linux (deb, rpm)]"
needs:
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm install
- run: npm run make
- run: cp -r ./out/make ./out/build_linux
- uses: actions/upload-artifact@v3
with:
name: dist-linux
path: ./out/build_linux
build_macos:
name: "Build app [MacOS]"
needs:
- lint
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm install
- run: npm run make
- run: cp -r ./out/make ./out/build_macos
- uses: actions/upload-artifact@v3
with:
name: dist-macos
path: ./out/build_macos
release:
name: "Release new app version"
needs:
- build_linux
- build_windows
- build_macos
runs-on: ubuntu-latest
steps:
- run: sudo apt-get install -y tree
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- uses: actions/download-artifact@v3
- run: mkdir gh_assets
- run: cp dist-linux/deb/x64/webm-desktop_*_amd64.deb gh_assets/webm-desktop_amd64.deb
- run: cp dist-windows/squirrel.windows/x64/webm-desktop-*\ Setup.exe gh_assets/webm-desktop_setup_amd64.exe
- run: cp dist-macos/zip/darwin/x64/webm-desktop-darwin-x64-*.zip gh_assets/webm-desktop-darwin-x64.zip
- run: cp dist-linux/rpm/x64/webm-desktop-*-1.x86_64.rpm gh_assets/webm-desktop-1.x86_64.rpm
- run: rm -rf {dist-linux,dist-windows,dist-macos}
- run: tree
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}