-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (65 loc) · 2.32 KB
/
package_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
name: Package and Deploy
on:
release:
types: [published]
jobs:
build-and-deploy-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Set up Node.js
- uses: actions/setup-node@v1
with:
node-version: '18.x'
# Install yarn
- name: Install Yarn
run: npm install -g yarn
# Install dependencies
- name: Install Dependencies
run: yarn install
# Build the project
- name: Package for Linux
run: yarn electron:package:linux
# Rename the release artifact
- name: Rename Artifact
run: mv dist/frame-cast_*.deb dist/frame-cast_${{ github.event.release.tag_name }}_amd64.deb
# Upload the release artifact
- name: Upload Artifacts
uses: softprops/action-gh-release@v2
with:
files: |
dist/frame-cast_${{ github.event.release.tag_name }}_amd64.deb
build-and-deploy-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
# Set up Node.js
- uses: actions/setup-node@v1
with:
node-version: '18.x'
# Install yarn
- name: Install Yarn
run: npm install -g yarn
# Disable yarn proxy
- name: Disable Yarn Proxy
run: npm config rm proxy
- name: Disable Yarn HTTPS Proxy
run: npm config rm https-proxy
# Install dependencies
- name: Install Dependencies
run: yarn install
# Build the project
- name: Package for Windows
run: yarn electron:package:win
# Rename artifacts
- name: Rename Artifact Executable
run: mv "dist/FrameCast Setup *.exe" "dist/FrameCast Setup ${{ github.event.release.tag_name }}.exe"
- name: Rename Artifact Executable Blockmap
run: mv "dist/FrameCast Setup *.exe.blockmap" "dist/FrameCast Setup ${{ github.event.release.tag_name }}.exe.blockmap"
# Upload the release artifact
- name: Upload Artifacts
uses: softprops/action-gh-release@v2
with:
files: |
dist/FrameCast Setup ${{ github.event.release.tag_name }}.exe
dist/FrameCast Setup ${{ github.event.release.tag_name }}.exe.blockmap