Update to Keycloak 26. #24
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
name: Build NuGet Packages | |
on: [push, pull_request] | |
jobs: | |
build_nuget: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup Node 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '21' | |
- name: Build NuGet package | |
shell: pwsh | |
run: Build/scripts/rest_api_client.build.ps1 -version 0.0.0 -publshFolder Keycloak.RestApiClient.${{github.ref_name}} -openApiJson https://www.keycloak.org/docs-api/26.0.1/rest-api/openapi.json |