forked from geekuillaume/soundsync
-
Notifications
You must be signed in to change notification settings - Fork 0
158 lines (131 loc) · 4.12 KB
/
build.yml
File metadata and controls
158 lines (131 loc) · 4.12 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
name: build
on: push
jobs:
build-webui:
name: Build WebUI
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install shared deps
run: yarn install
- name: Install webui deps
working-directory: ./webui
run: yarn install
- name: Build webui
working-directory: ./webui
run: yarn build
- uses: actions/upload-artifact@v4
with:
name: webui-dist
path: ./webui/dist
build-executable:
name: Build executable
needs: build-webui
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
node-version: 16
- name: Download Webui dist
uses: actions/download-artifact@v1
with:
name: webui-dist
path: webui/dist
- name: Install requirements
if: "runner.os == 'Linux'"
run: sudo apt-get -y install libarchive-tools
- name: Update version global
run: sh scripts/update_build_version.sh
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
env:
USE_HARD_LINKS: false # because of https://github.com/electron-userland/electron-builder/issues/3179
with:
github_token: ${{ secrets.github_token }}
release: false
- name: Clean build directory
shell: bash
run: ./scripts/clean_build.sh
# - name: Upload Artifacts
# uses: actions/upload-artifact@v1
# with:
# name: soundsync-${{ runner.os }}
# path: bin
- uses: ./.github/actions/create-dev-release
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
prerelease: false
files_glob: bin/*
asset_content_type: application/zip
- uses: ./.github/actions/create-dev-release
if: ${{ github.ref == 'refs/heads/master' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: bleeding-edge
release_name: Bleeding edge
prerelease: true
files_glob: bin/*
asset_content_type: application/zip
# crosscompile:
# name: Build executable for ARM
# needs: build-webui
# runs-on: ubuntu-latest
# steps:
# - name: Check out Git repository
# uses: actions/checkout@v1
# - name: Download Webui dist
# uses: actions/download-artifact@v1
# with:
# name: webui-dist
# path: webui/dist
# - name: Update version global
# run: sh scripts/update_build_version.sh
# - name: Build for raspberrypi
# shell: bash
# run: ./scripts/compile_for_raspberrypi.sh
# - name: Clean build directory
# shell: bash
# run: sudo ./scripts/clean_build.sh
# # - name: Upload build artifacts
# # uses: actions/upload-artifact@v1
# # with:
# # name: soundsync-linux-armv7l
# # path: bin/
# - uses: ./.github/actions/create-dev-release
# if: ${{ startsWith(github.ref, 'refs/tags/v') }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: ${{ github.ref }}
# prerelease: false
# files_glob: bin/*
# asset_content_type: application/zip
# - uses: ./.github/actions/create-dev-release
# if: ${{ github.ref == 'refs/heads/master' }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: bleeding-edge
# release_name: Bleeding edge
# prerelease: true
# files_glob: bin/*
# asset_content_type: application/zip