From 4b547628fcca2ce0b79140fffd3d8f82dd659297 Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Fri, 1 Jul 2022 13:07:11 +0200 Subject: [PATCH] Added build and sign step for the dmg Contributes to CURA-9365 --- .github/workflows/cura-installer.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index 0b4af99898..853e5e2392 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -167,6 +167,14 @@ jobs: run: python ../cura_inst/packaging/AppImage/create_appimage.py ./Ultimaker-Cura $CURA_VERSION_FULL working-directory: dist + - name: Create the MacOS dmg (Bash) + if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Macos' }} + run: python ../cura_inst/packaging/dmg/dmg_sign_notarize.py + working-directory: dist + env: + SOURCE_DIR: ${{ env.GITHUB_WORKSPACE }}/cura_inst + DIST_DIR: ${{ env.GITHUB_WORKSPACE }}/dist + - name: Upload the artifacts uses: actions/upload-artifact@v3 with: