From 72fdc8f536204cf9ea667b82842074dcd74935c7 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Wed, 21 May 2025 14:40:28 +0200 Subject: [PATCH] [skip ci] allow manual trigger for building macOS x64 dmg --- .github/workflows/mac-dmg-x64.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mac-dmg-x64.yml b/.github/workflows/mac-dmg-x64.yml index a26e32565..8e0393e55 100644 --- a/.github/workflows/mac-dmg-x64.yml +++ b/.github/workflows/mac-dmg-x64.yml @@ -2,16 +2,25 @@ name: Build macOS .dmg for x64 ####################################### # STOP! DO NOT EDIT THIS FILE! -# +# # It is a copy of mac-dmg.yml with tiny adjustements (mainly lines 42 to 47) # It was made necessary, since Github does not offer free macos intel runners for macos 15 and above. -# This workflow can only be triggered by a release. -# +# ####################################### on: release: types: [published] + workflow_dispatch: + inputs: + version: + description: 'Version' + required: false + notarize: + description: 'Notarize' + required: true + default: false + type: boolean env: JAVA_DIST: 'temurin'