Skip to content

- bump to version 3.6.1 #21

- bump to version 3.6.1

- bump to version 3.6.1 #21

Workflow file for this run

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