-
Notifications
You must be signed in to change notification settings - Fork 12
98 lines (93 loc) · 2.45 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
on:
workflow_dispatch:
push:
branches-ignore:
- 'master'
- 'docs'
paths-ignore:
- '**.md'
- 'docs/**'
tags:
- '*'
env:
package_path: package
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run script
run: ci/ci_ubuntu.sh
- name: Upload
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: actions/upload-artifact@v4
with:
name: vst_ubuntu
path: vst_ubuntu
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run script
run: ci/ci_windows.ps1
- name: Upload
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: actions/upload-artifact@v4
with:
name: vst_windows
path: vst_windows
build-macOS:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run script
run: ci/ci_macOS.sh
- name: Upload
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: actions/upload-artifact@v4
with:
name: vst_macOS
path: vst_macOS
release-packaging:
needs: [build-ubuntu, build-windows, build-macOS]
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/UhhyouPlugins') }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path:
ref: ${{ github.ref }}
submodules: recursive
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: ${{ env.package_path }}
- name: Run package script
run: |
cd ${{ env.package_path }}
echo "Run pack.py"
python3 pack.py
echo "Run studiorack.py"
python3 studiorack.py
- name: Get Release Notes
run: 'echo "$(git tag -l --format="%(contents:body)" $GITHUB_REF_NAME)" > RELEASE_NOTES'
- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: RELEASE_NOTES
files: |
${{ env.package_path }}/pack_macOS/*.zip
${{ env.package_path }}/pack/*.zip
${{ env.package_path }}/pack/*.png
${{ env.package_path }}/pack/plugins.json
${{ env.package_path }}/audiosample/*.flac