Skip to content

Commit

Permalink
Build using GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Oct 24, 2023
1 parent 794867e commit cee4181
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
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

0 comments on commit cee4181

Please sign in to comment.