Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Oct 24, 2023
1 parent cee4181 commit 4482dc2
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,27 @@ jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
- uses: actions/checkout@v4

- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x

- name: Install .NET iOS workload
run: dotnet workload install ios

- name: Install .NET Android workload
run: dotnet workload install android
- name: Setup Nuget

- name: Setup NuGet
uses: nuget/setup-nuget@v1
- run: nuget restore Auth0.OidcClient.All.sln

- name: Restore NuGet
run: nuget restore Auth0.OidcClient.All.sln

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1
- name: Build app for release

- name: Build
run: msbuild Auth0.OidcClient.All.sln -t:rebuild -verbosity:diag -property:Configuration=Release

0 comments on commit 4482dc2

Please sign in to comment.