Skip to content

Commit

Permalink
build macOS app on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
linderd committed Sep 18, 2024
1 parent 44a0735 commit dc4e422
Showing 1 changed file with 16 additions and 22 deletions.
38 changes: 16 additions & 22 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,6 @@ jobs:
- name: Build Windows-single-file-app
run: dotnet publish QuIDE/QuIDE.csproj -r win-x64 -f net8.0 -p:PublishSingleFile=true --self-contained false

- name: Build macOS software
run: dotnet publish QuIDE/QuIDE.csproj -r osx-arm64

- name: build macOS single-file-app
run: dotnet msbuild QuIDE/QuIDE.csproj -t:BundleApp -p:Configuration=Release -p:RuntimeIdentifier=osx-arm64 -p:UseAppHost=true

# will later be put in .dmg
- name: Upload macOS App
uses: actions/upload-artifact@v4
with:
name: QuIDE.app
path: QuIDE/bin/Release/net8.0/osx-arm64/publish/QuIDE.app
compression-level: 0
retention-days: 1

- name: Upload Linux artifact
uses: actions/upload-artifact@v4
with:
Expand All @@ -57,24 +42,33 @@ jobs:
name: QuIDE Windows amd64
path: QuIDE/bin/Release/net8.0/win-x64/publish/QuIDE.exe

build-dmg:
build-on-macos:
# the dmg-step doesn't work on linux
runs-on: macos-latest
needs: [build]

steps:
- uses: actions/download-artifact@v4
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
name: QuIDE.app
path: QuIDE.app
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --no-restore --configuration Release

- name: Build macOS software
run: dotnet publish QuIDE/QuIDE.csproj -r osx-arm64

# here we could sign the app if we had a certificate
- name: build macOS app
run: dotnet msbuild QuIDE/QuIDE.csproj -t:BundleApp -p:Configuration=Release -p:RuntimeIdentifier=osx-arm64 -p:UseAppHost=true

- name: create macOS dmg
uses: L-Super/[email protected]
with:
dmg_name: QuIDE
src_dir: QuIDE.app
src_dir: QuIDE/bin/Release/net8.0/osx-arm64/publish/QuIDE.app

- name: Upload macOS artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit dc4e422

Please sign in to comment.