mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-08 23:18:16 -07:00
chore: Changed case naming for Mac OS App (#349)
This commit is contained in:
parent
28b29e19e2
commit
be3ec1f158
1 changed files with 6 additions and 1 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
|
@ -214,8 +214,13 @@ jobs:
|
||||||
- name: Build macOS app
|
- name: Build macOS app
|
||||||
run: flutter build macos --flavor production --build-number=${{ github.run_number }}
|
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
|
- 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
|
- name: Archive macOS artifact
|
||||||
uses: actions/upload-artifact@v4.0.0
|
uses: actions/upload-artifact@v4.0.0
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue