-
Notifications
You must be signed in to change notification settings - Fork 16
112 lines (94 loc) · 3.01 KB
/
nightly.yaml
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
name: nightly
on:
workflow_dispatch:
push:
branches: [ main, ci/** ]
concurrency:
group: environment-${{ github.ref }}
cancel-in-progress: true
jobs:
macbuild:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: flucoma/actions/env@main
- uses: flucoma/actions/sc@main
with:
branch: origin/main
- name: sign binaries
uses: flucoma/actions/distribution@main
with:
glob: '-e scx'
package: 'install'
output_type: 'dmg'
output: FluCoMa-SC-Mac-nightly
cert: ${{ secrets.CERT }}
certpwd: ${{ secrets.CERTPWD }}
teamid: ${{ secrets.WWDRTEAMID }}
apppwd: ${{ secrets.APPSTORECONNECTPWD }}
appusr: ${{ secrets.APPSTORECONNECTUSERNAME }}
- uses: actions/upload-artifact@v3
with:
name: macbuild
path: install/FluCoMa-SC-Mac-nightly.dmg
winbuild:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: flucoma/actions/env@main
- uses: flucoma/actions/sc@main
with:
branch: origin/main
- name: remove pdb files
run: Remove-Item install -Recurse -Include *.pdb
- name: compress archive
run: 7z a FluCoMa-SC-Windows-nightly.zip FluidCorpusManipulation
working-directory: install
- uses: actions/upload-artifact@v3
with:
name: winbuild
path: install/FluCoMa-SC-Windows-nightly.zip
linuxbuild:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: flucoma/actions/env@main
- uses: flucoma/actions/sc@main
with:
branch: origin/main
- name: compress archive
run: tar -zcvf FluCoMa-SC-Linux-nightly.tar.gz FluidCorpusManipulation
working-directory: install
- uses: actions/upload-artifact@v3
with:
name: linuxbuild
path: install/FluCoMa-SC-Linux-nightly.tar.gz
release:
runs-on: ubuntu-20.04
needs: [macbuild, winbuild, linuxbuild]
steps:
- uses: actions/download-artifact@v2
with:
name: macbuild
- uses: actions/download-artifact@v2
with:
name: winbuild
- uses: actions/download-artifact@v2
with:
name: linuxbuild
- uses: dev-drprasad/[email protected]
with:
delete_release: true # default: false
tag_name: nightly # tag name to delete
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: create release
uses: ncipollo/release-action@v1
with:
name: FluCoMa SuperCollider Nightly Release
artifacts: "FluCoMa*"
body: "This is a nightly build of the FluCoMa SuperCollider package. As such, be warned there may be bugs or other unexpected behaviour. The build hash is ${{ github.sha }}"
tag: nightly
prerelease: true
draft: false
allowUpdates: true