Skip to content

Commit

Permalink
Update worflow to use latest .net9
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry08 committed Nov 16, 2024
1 parent 1f60830 commit 073c1ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

#- name: Verify formatting
# run: >
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

- name: Install MAUI Workload
#run: dotnet workload install maui --ignore-failed-sources
Expand All @@ -88,7 +88,7 @@ jobs:
run: >
dotnet publish Yosu/
-c Release
-f net8.0-android
-f net9.0-android
-p:AndroidKeyStore=true
-p:AndroidSigningKeyStore=${{ github.workspace }}/signing-key.keystore
-p:AndroidSigningStorePass="${{ secrets.PASSWORD }}"
Expand All @@ -101,7 +101,7 @@ jobs:
run: |
set -e
mv Yosu/bin/Release/net8.0-android${{ startsWith(matrix.rid, 'android-') && format('{0}{1}', '/', matrix.rid) || '' }}/*-Signed.apk Yosu-${{ matrix.rid }}.apk
mv Yosu/bin/Release/net9.0-android${{ startsWith(matrix.rid, 'android-') && format('{0}{1}', '/', matrix.rid) || '' }}/*-Signed.apk Yosu-${{ matrix.rid }}.apk
shell: bash

- name: Upload Android Artifact
Expand Down

0 comments on commit 073c1ea

Please sign in to comment.