-
-
Notifications
You must be signed in to change notification settings - Fork 24
132 lines (112 loc) · 3.82 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: Build and Release
on:
push:
tags:
- 'v*.*.*' # Triggers on version tags
- 'v*.*.*-*' # Trigger for pre-release tags
workflow_dispatch: # Allows manual triggering
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest] # Matrix for multiple OS builds
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: |
cd ./DeskThingServer
npm ci
- name: Run type check
run: |
cd ./DeskThingServer
npm run typecheck
- name: Build application for Windows
if: runner.os == 'Windows'
run: |
cd ./DeskThingServer
npm run build:win
- name: Build application for macOS
if: runner.os == 'macOS'
run: |
cd ./DeskThingServer
npm run build:mac
- name: Build application for Linux
if: runner.os == 'Linux'
run: |
cd ./DeskThingServer
npm run build:linux
- name: Extract version from tag
id: get_version
run: echo "::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}"
- name: Upload artifact for Windows
if: runner.os == 'Windows'
uses: actions/upload-artifact@v3
with:
name: DeskThing-${{ steps.get_version.outputs.VERSION }}-windows-setup.exe
path: ./DeskThingServer/dist/*.exe
- name: Upload artifact for macOS
if: runner.os == 'macOS'
uses: actions/upload-artifact@v3
with:
name: DeskThing-${{ steps.get_version.outputs.VERSION }}-mac-setup.dmg
path: ./DeskThingServer/dist/*.dmg
- name: Upload artifact for Linux
if: runner.os == 'Linux'
uses: actions/upload-artifact@v3
with:
name: DeskThing-${{ steps.get_version.outputs.VERSION }}-linux.AppImage
path: ./DeskThingServer/dist/*.AppImage
release:
needs: build # Runs after build job
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download artifacts for Windows
uses: actions/download-artifact@v3
with:
name: DeskThing-windows-${{ steps.get_version.outputs.VERSION }}
path: ./dist/windows
- name: Download artifacts for macOS
uses: actions/download-artifact@v3
with:
name: DeskThing-macos-${{ steps.get_version.outputs.VERSION }}
path: ./dist/macos
- name: Download artifacts for Linux
uses: actions/download-artifact@v3
with:
name: DeskThing-linux-${{ steps.get_version.outputs.VERSION }}
path: ./dist/linux
- name: Check for existing release
id: release_check
run: |
TAG_NAME=$(git describe --tags --exact-match ${{ github.sha }} || echo '')
echo "::set-output name=tag_name::${TAG_NAME}"
- name: Create or update release
if: steps.release_check.outputs.tag_name != ''
id: create_release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.release_check.outputs.tag_name }}
files: |
./dist/windows/*.exe
./dist/macos/*.dmg
./dist/linux/*.AppImage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create new release if no existing release found
if: steps.release_check.outputs.tag_name == ''
uses: softprops/action-gh-release@v1
with:
files: |
./dist/windows/*.exe
./dist/macos/*.dmg
./dist/linux/*.AppImage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}