This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
Merge pull request #223 from DuendeSoftware/readme-link #511
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: "CI" | |
on: | |
push: | |
branches: | |
- main | |
- features/** | |
tags: | |
- '*.*.*' | |
pull_request: | |
env: | |
DOTNET_NOLOGO: true | |
permissions: | |
contents: read | |
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/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
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.ps1 | |
- if: (matrix.runs-on == 'windows-latest') && (github.ref == 'refs/heads/main' || contains(github.ref, 'refs/tags/')) | |
env: | |
SignClientSecret: ${{ secrets.SIGNCLIENTSECRET }} | |
run: | | |
./build.ps1 sign | |
dotnet nuget push .\artifacts\*.nupkg -s https://www.myget.org/F/duende_identityserver/api/v2/package -k ${{ secrets.MYGET }} | |