Extract the new business rule validator to a common project 🔄 #66
Workflow file for this run
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: Chapter 4 package workflow | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- 'Chapter-4-applying-tactical-domain-driven-design/Fitnet.Common/**' | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- 'Chapter-4-applying-tactical-domain-driven-design/Fitnet.Common/**' | |
env: | |
CHAPTER_DIR: 'Chapter-4-applying-tactical-domain-driven-design/Fitnet.Common' | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: ${{ env.CHAPTER_DIR }} | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
test: | |
defaults: | |
run: | |
working-directory: ${{ env.CHAPTER_DIR }} | |
runs-on: ubuntu-latest | |
name: Test | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Test | |
run: dotnet test | |
pack: | |
defaults: | |
run: | |
working-directory: ${{ env.CHAPTER_DIR }} | |
runs-on: ubuntu-latest | |
name: Pack and Publish | |
needs: test | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Pack Projects | |
run: | | |
dotnet pack Fitnet.Common.Api/Fitnet.Common.Api.csproj -c Release | |
dotnet pack Fitnet.Common.Core/Fitnet.Common.Core.csproj -c Release | |
dotnet pack Fitnet.Common.Infrastructure/Fitnet.Common.Infrastructure.csproj -c Release | |
dotnet pack Fitnet.Common.IntegrationTestsToolbox/Fitnet.Common.IntegrationTestsToolbox.csproj -c Release | |
- name: Prepare Packages | |
run: dotnet nuget add source --username $OWNER --password $GITHUB_TOKEN --store-password-in-clear-text --name github "https://nuget.pkg.github.com/$OWNER/index.json" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OWNER: ${{ github.repository_owner }} | |
- name: Publish Packages | |
run: | | |
dotnet nuget push "Fitnet.Common.Api/bin/Release/EvolutionaryArchitecture.Fitnet.Common.Api.*.nupkg" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} | |
dotnet nuget push "Fitnet.Common.Core/bin/Release/EvolutionaryArchitecture.Fitnet.Common.Core.*.nupkg" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} | |
dotnet nuget push "Fitnet.Common.Infrastructure/bin/Release/EvolutionaryArchitecture.Fitnet.Common.Infrastructure.*.nupkg" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} | |
dotnet nuget push "Fitnet.Common.IntegrationTestsToolbox/bin/Release/EvolutionaryArchitecture.Fitnet.Common.IntegrationTestsToolbox.*.nupkg" --source "github" --api-key ${{ secrets.GITHUB_TOKEN }} |