From c1e90356fe0fbe968f82448eb179b4096134a302 Mon Sep 17 00:00:00 2001 From: Henri Devigne Date: Sat, 1 Jun 2024 19:32:32 +0200 Subject: [PATCH] fes --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 844b9fc..e6b4ae0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,11 +22,14 @@ jobs: - name: Create macOS app run: appify -name "IPingTray" -icon docs/icon.png ipingtray + - name: Prepare DMG + run: mkdir dmg && mv ipingtray dmg/ && ln -s /Applications dmg/Applications + - name: Install create-dmg - run: npm install -g create-dmg + run: brew install create-dmg - name: Create DMG - run: create-dmg './IPingTray.app' || echo "i don't pay Apple for signing app :-)" + run: create-dmg 'dmg' || echo "i don't pay Apple for signing app :-)" - name: Upload DMG artifact uses: actions/upload-artifact@v2