nightly #98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/pd@v5 | |
with: | |
branch: origin/main | |
- name: sign binaries | |
uses: flucoma/actions/distribution@main | |
with: | |
glob: '-e pd_darwin' | |
package: 'release-packaging' | |
output_type: 'dmg' | |
output: FluCoMa-PD-Mac-nightly | |
cert: ${{ secrets.CERT }} | |
certpwd: ${{ secrets.CERTPWD }} | |
teamid: ${{ secrets.WWDRTEAMID }} | |
apppwd: ${{ secrets.APPSTORECONNECTPWD }} | |
appusr: ${{ secrets.APPSTORECONNECTUSERNAME }} | |
- uses: actions/[email protected] | |
with: | |
name: macbuild | |
path: release-packaging/FluCoMa-PD-Mac-nightly.dmg | |
winbuild: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: flucoma/actions/env@main | |
- uses: flucoma/actions/pd@v5 | |
with: | |
branch: origin/main | |
- name: compress archive | |
run: 7z a FluCoMa-PD-Windows-nightly.zip FluidCorpusManipulation | |
working-directory: release-packaging | |
- uses: actions/[email protected] | |
with: | |
name: winbuild | |
path: release-packaging/FluCoMa-PD-Windows-nightly.zip | |
linuxbuild: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: flucoma/actions/env@main | |
- uses: flucoma/actions/pd@v5 | |
with: | |
branch: origin/main | |
- name: compress archive | |
run: tar -zcvf FluCoMa-PD-Linux-nightly.tar.gz FluidCorpusManipulation | |
working-directory: release-packaging | |
- uses: actions/[email protected] | |
with: | |
name: linuxbuild | |
path: release-packaging/FluCoMa-PD-Linux-nightly.tar.gz | |
release: | |
runs-on: ubuntu-20.04 | |
needs: [macbuild, winbuild, linuxbuild] | |
steps: | |
#### LINUX #### | |
- uses: actions/[email protected] | |
with: | |
name: linuxbuild | |
#### MAC #### | |
- uses: actions/[email protected] | |
with: | |
name: macbuild | |
#### WINDOWS #### | |
- uses: actions/[email protected] | |
with: | |
name: winbuild | |
#### UPLOAD RELEASE #### | |
- uses: dev-drprasad/[email protected] | |
with: | |
delete_release: true | |
tag_name: nightly | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: create release | |
uses: ncipollo/release-action@v1 | |
with: | |
name: FluCoMa PureData Nightly Release | |
artifacts: "FluCoMa*" | |
body: This is a nightly build of the FluCoMa PureData 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 |