Release new version of Functional.AspNetCore and Functional.Logger #114
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: Package Publish | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| publish-functional: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Publish Codehard.Functional To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Functional/Codehard.Functional/Codehard.Functional.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Functional.AspNetCore To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Functional/Codehard.Functional.AspNetCore/Codehard.Functional.AspNetCore.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Functional.Logger To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Functional/Codehard.Functional.Logger/Codehard.Functional.Logger.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Functional.MassTransit To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Functional/Codehard.Functional.MassTransit/Codehard.Functional.MassTransit.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Functional.FSharp To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Functional/Codehard.Functional.FSharp/Codehard.Functional.FSharp.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Functional.EntityFramework To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Functional/Codehard.Functional.EntityFramework/Codehard.Functional.EntityFramework.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Functional.Marten To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Functional/Codehard.Functional.Marten/Codehard.Functional.Marten.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Functional.MediatR To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Functional/Codehard.Functional.MediatR/Codehard.Functional.MediatR.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| publish-common: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Publish Codehard.Common To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Common/Codehard.Common/Codehard.Common.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Common.AspNetCore To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Common/Codehard.Common.AspNetCore/Codehard.Common.AspNetCore.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Common.DomainModel To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Common/Codehard.Common.DomainModel/Codehard.Common.DomainModel.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.DomainModel.Generator To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Common/Codehard.DomainModel.Generator/Codehard.DomainModel.Generator.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| publish-infrastructure: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Publish Codehard.Infrastructure.EntityFramework To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework/Codehard.Infrastructure.EntityFramework.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} | |
| - name: Publish Codehard.Infrastructure.EntityFramework.Parser To Nuget | |
| uses: brandedoutcast/publish-nuget@v2.5.2 | |
| with: | |
| PROJECT_FILE_PATH: src/Codehard.Infrastructure/Codehard.Infrastructure.EntityFramework.Parser/Codehard.Infrastructure.EntityFramework.Parser.csproj | |
| NUGET_KEY: ${{secrets.NUGET_API_KEY}} |