- bump to version 3.6.1 #21
Workflow file for this run
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: Build Installer | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
jobs: | |
build_installer_windows: | |
runs-on: [self-hosted, windows] | |
steps: | |
- name: Cleanup working directory | |
working-directory: ${{ github.workspace }} | |
run: del *.* /Q /S | |
shell: cmd | |
- name: Checkout HISE repository | |
uses: actions/checkout@v1 | |
with: | |
ref: 'master' | |
- name: Build HISE Standalone & VST Plugin | |
working-directory: ${{ github.workspace }}/tools/auto_build/ | |
run: 01_BuildHISE.bat | |
shell: cmd | |
- name: Build Installer | |
working-directory: ${{ github.workspace }}/tools/auto_build/ | |
run: 02_BuildInstaller.bat | |
shell: cmd | |
- name: Upload Installer | |
uses: actions/upload-artifact@v2 | |
with: | |
name: HISE Installer | |
path: ${{ github.workspace }}/tools/auto_build/Output/*.exe | |
build_installer_macos: | |
runs-on: [self-hosted, macos] | |
steps: | |
- name: Cleanup working directory | |
run: rm -rf "${{github.workspace}}" | |
- name: Checkout HISE repository | |
uses: actions/checkout@v1 | |
with: | |
ref: 'master' | |
- name: Build HISE | |
working-directory: ${{ github.workspace }}/tools/auto_build/ | |
run: sh ./01_BuildHISE.sh | |
- name: Build Installer | |
working-directory: ${{ github.workspace }}/tools/auto_build/ | |
run: sh ./02_BuildInstaller.sh | |
- name: Upload Installer | |
uses: actions/upload-artifact@v2 | |
with: | |
name: HISE Installer | |
path: ${{ github.workspace }}/tools/auto_build/Output/*.pkg |