Skip to content

ci: add/update workflow for checking commit conventions #96

ci: add/update workflow for checking commit conventions

ci: add/update workflow for checking commit conventions #96

Workflow file for this run

name: Windows installer
on:
push:
branches:
- master
workflow_dispatch: {}
jobs:
installer:
# Only on main repository (don't publish on forks)
if: github.repository_owner == 'halestudio'
name: Build Windows installer
runs-on: windows-latest
steps:
- name: Setup Maven
uses: s4u/setup-maven-action@a37cecafbf1e8d86c1c93d51054a63e228b96b3e # v1.15.0
with:
java-version: 17
java-distribution: temurin
maven-version: 3.9.6
- name: Build installer
run: |
build.bat product -o windows -a x86_64 HALE
shell: cmd
- name: Upload hale studio build (Installer)
id: upload-msi
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: hale studio (Installer)
path: build/target/*.msi
retention-days: 90