This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Rebrand IdentityModel to Duende in README #129
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - main | |
| - features/** | |
| tags: | |
| - '*.*.*' | |
| pull_request: | |
| env: | |
| DOTNET_NOLOGO: true | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runs-on: [macOS-latest, ubuntu-latest, windows-latest] | |
| name: ${{ matrix.runs-on }} | |
| runs-on: ${{ matrix.runs-on }} | |
| steps: | |
| - uses: actions/checkout@af513c7a016048ae468971c52ed77d9562c7c819 | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v2 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - run: dotnet --info | |
| - if: contains(matrix.runs-on, 'macOS') || contains(matrix.runs-on, 'ubuntu') | |
| run: ./build.sh | |
| - if: matrix.runs-on == 'windows-latest' && github.ref != 'refs/heads/main' && !contains(github.ref, 'refs/tags/') | |
| run: ./build.cmd | |
| - if: (matrix.runs-on == 'windows-latest') && (github.ref == 'refs/heads/main' || contains(github.ref, 'refs/tags/')) | |
| env: | |
| SignClientSecret: ${{ secrets.SIGNCLIENTSECRET }} | |
| run: | | |
| ./build.cmd sign | |
| dotnet nuget push .\artifacts\*.nupkg -s https://www.myget.org/F/identity/api/v2/package -k ${{ secrets.MYGET }} |