-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
794867e
commit cee4181
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build | ||
|
||
on: | ||
pull_request: {} | ||
|
||
push: | ||
branches: ["master", "main", "feat/sdk-4539"] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-dotnet@v1 | ||
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 | ||
uses: nuget/setup-nuget@v1 | ||
- run: nuget restore Auth0.OidcClient.All.sln | ||
- name: Setup MSBuild | ||
uses: microsoft/setup-msbuild@v1.1 | ||
- name: Build app for release | ||
run: msbuild Auth0.OidcClient.All.sln -t:rebuild -verbosity:diag -property:Configuration=Release |