From 66f13189774ebffd1aeeba1695cd345c8afa9928 Mon Sep 17 00:00:00 2001 From: David Stirling Date: Mon, 21 Oct 2024 15:36:14 +0100 Subject: [PATCH] Use tar for macos app --- .github/workflows/release.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0e1f76866..d73710d986 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -95,18 +95,14 @@ jobs: run: | pyinstaller -y ./distribution/macos/CellProfiler.spec - if: startsWith(matrix.os, 'macos') - name: MacOS dmg package - continue-on-error: true - run: | - cd dist - echo Creating DMG - create-dmg 'CellProfiler+AI.app' --dmg-title "CellProfiler+AI.dmg" + name: MacOS tar package + run: tar -cvf dist/CellProfiler+AI.tar dist/CellProfiler+AI.app - if: startsWith(matrix.os, 'macos') uses: actions/upload-artifact@v4 - name: MacOS dmg upload + name: MacOS tar upload with: - name: CellProfiler-macOS-4.2.80001-ai.dmg - path: ./dist/*.dmg + name: CellProfiler-macOS-4.2.80001-ai.tar + path: ./dist/*.tar - if: startsWith(matrix.os, 'windows') uses: actions/upload-artifact@v4 name: Windows artifact upload