Skip to content

Commit

Permalink
Fix android workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tmk907 committed Dec 2, 2023
1 parent 1aa0a30 commit 0fe7cff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will build, sign, and package a WinUI 3 MSIX desktop application
# built on .NET.

name: Build Android app

on:
Expand All @@ -21,7 +18,7 @@ jobs:
env:
Solution_Name: RacingCarsController.sln
Project_Path: RacingCarsControllerAndroid/RacingCarsControllerAndroid.csproj
Publish_Directory: RacingCarsControllerAndroid/bin/Release/net7.0-android/publish
Publish_Directory: RacingCarsControllerAndroid/bin/Release/net8.0-android/publish
Project_Directory: RacingCarsControllerAndroid

steps:
Expand All @@ -48,7 +45,7 @@ jobs:
(Get-Content $csprojPath) -Replace '<ApplicationDisplayVersion>[\w\d.-]+</ApplicationDisplayVersion>', "<ApplicationDisplayVersion>$newVersionName</ApplicationDisplayVersion>" | Set-Content $csprojPath
- name: Setup .NET 7
- name: Setup .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/winui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
$manifest.Package.Applications.Application.VisualElements.DisplayName = "${{ matrix.MsixPackageDisplayName }}"
$manifest.save(".\$env:Project_Directory\Package.appxmanifest")
# Install the .NET Core workload
- name: Install .NET Core
# Install the .NET workload
- name: Install .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
Expand Down

0 comments on commit 0fe7cff

Please sign in to comment.