Upgrade SimpleBulks #21
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
| name: .Net Build Identity Server - OpenIddict | |
| on: | |
| push: | |
| paths: | |
| - 'src/IdentityServers/OpenIddict/**' | |
| pull_request: | |
| paths: | |
| - 'src/IdentityServers/OpenIddict/**' | |
| jobs: | |
| build: | |
| defaults: | |
| run: | |
| working-directory: src/IdentityServers/OpenIddict | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 9.0.202 | |
| - name: Build | |
| run: dotnet build --configuration Release | |
| - name: Publish ClassifiedAds.Migrator | |
| run: dotnet publish ClassifiedAds.Migrator/*.csproj --configuration Release | |
| - name: Publish ClassifiedAds.IdentityServer | |
| run: dotnet publish ClassifiedAds.IdentityServer/*.csproj --configuration Release | |
| - name: Upload ClassifiedAds.Migrator | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ClassifiedAds.Migrator | |
| path: src/IdentityServers/OpenIddict/ClassifiedAds.Migrator/bin/Release/net9.0/publish | |
| - name: Upload ClassifiedAds.IdentityServer | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ClassifiedAds.IdentityServer | |
| path: src/IdentityServers/OpenIddict/ClassifiedAds.IdentityServer/bin/Release/net9.0/publish |