From 07117357128a943f8299fcc0d534f1e91680f2f0 Mon Sep 17 00:00:00 2001 From: PartyDonut <42371342+PartyDonut@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:37:30 +0200 Subject: [PATCH] [MacOS] Fixed artifacts uploading --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 31242e1..f8bc61b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -189,11 +189,15 @@ jobs: flutter build macos + - name: Create DMG file + run: | + hdiutil create -format UDZO -srcfolder build/macos/Build/Products/Release/fladder.app build/macos/Build/Products/Release/fladder.dmg + - name: Archive macOS artifact uses: actions/upload-artifact@v4.0.0 with: name: ${{ env.APP_NAME }}-macOS-${{ env.VERSION_NAME }} - path: build/macos/Build/Products/Release/fladder.app + path: build/macos/Build/Products/Release/fladder.dmg # build-linux: # runs-on: ubuntu-latest