From be3ec1f158839f9df3a8894bf3b8ffc12948760f Mon Sep 17 00:00:00 2001 From: vikingnope <81376423+vikingnope@users.noreply.github.com> Date: Thu, 22 May 2025 22:41:14 +0200 Subject: [PATCH] chore: Changed case naming for Mac OS App (#349) --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e4dd336..eca2f73 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -214,8 +214,13 @@ jobs: - name: Build macOS app run: flutter build macos --flavor production --build-number=${{ github.run_number }} + - name: Ensure correct app name casing + run: | + APP_DIR="build/macos/Build/Products/Release-production" + mv "$APP_DIR/fladder.app" "$APP_DIR/Fladder.app" + - name: Create DMG file - run: hdiutil create -format UDZO -srcfolder build/macos/Build/Products/Release-production/fladder.app build/macos/Build/Products/Release-production/macOS.dmg + run: hdiutil create -format UDZO -srcfolder build/macos/Build/Products/Release-production/Fladder.app build/macos/Build/Products/Release-production/macOS.dmg - name: Archive macOS artifact uses: actions/upload-artifact@v4.0.0