Skip to content

Commit

Permalink
CI: Build Android ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Nov 3, 2024
1 parent 8b47ffa commit 478458a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
if: matrix.os == 'macos-latest'
shell: bash
run: dotnet publish -c Release -r osx-arm64 --self-contained Refresher /p:Version=${VERSION}

- name: Publish for Android ARM64
if: matrix.os == 'ubuntu-latest'
run: dotnet publish -c Release -r android-arm64 --self-contained Refresher.AndroidApp /p:Version=${VERSION}

- name: Create macOS universal2 binary
if: matrix.os == 'macos-latest'
Expand Down Expand Up @@ -137,3 +141,12 @@ jobs:
path: "Refresher-macOS.tar"
if-no-files-found: error
retention-days: 30

- name: Upload Android ARM64 build
if: matrix.os == 'ubuntu-latest'
uses: actions/[email protected]
with:
name: "EXPERIMENTAL Refresher for Android ARM64"
path: "Refresher.AndroidApp/bin/Release/net8.0-android/android-arm64/publish"
if-no-files-found: error
retention-days: 30

0 comments on commit 478458a

Please sign in to comment.