@@ -53,27 +53,17 @@ jobs:
5353 # Run ALL tests in the solution
5454 - name : Test
5555 run : dotnet test "${{ steps.solution.outputs.SOLUTION_PATH }}" --configuration Release --no-build --verbosity normal
56-
57- # Pack all relevant projects into ./artifacts with unified version
5856 - name : Pack FluentAAS Builder
59- run : dotnet pack src/FluentAas.Builder/FluentAas.Builder.csproj \
60- -c Release -o ./artifacts \
61- /p:PackageVersion=${{ steps.version.outputs.FULL_VERSION }}
57+ run : dotnet pack src/FluentAas.Builder/FluentAas.Builder.csproj -c Release -o ./artifacts /p:PackageVersion=${{ steps.version.outputs.FULL_VERSION }}
6258
6359 - name : Pack FluentAAS Core
64- run : dotnet pack src/FluentAas.Core/FluentAas.Core.csproj \
65- -c Release -o ./artifacts \
66- /p:PackageVersion=${{ steps.version.outputs.FULL_VERSION }}
60+ run : dotnet pack src/FluentAas.Core/FluentAas.Core.csproj -c Release -o ./artifacts /p:PackageVersion=${{ steps.version.outputs.FULL_VERSION }}
6761
6862 - name : Pack FluentAAS IO
69- run : dotnet pack src/FluentAas.IO/FluentAas.IO.csproj \
70- -c Release -o ./artifacts \
71- /p:PackageVersion=${{ steps.version.outputs.FULL_VERSION }}
63+ run : dotnet pack src/FluentAas.IO/FluentAas.IO.csproj -c Release -o ./artifacts /p:PackageVersion=${{ steps.version.outputs.FULL_VERSION }}
7264
7365 - name : Pack FluentAAS Templates
74- run : dotnet pack src/FluentAas.Templates/FluentAas.Templates.csproj \
75- -c Release -o ./artifacts \
76- /p:PackageVersion=${{ steps.version.outputs.FULL_VERSION }}
66+ run : dotnet pack src/FluentAas.Templates/FluentAas.Templates.csproj -c Release -o ./artifacts /p:PackageVersion=${{ steps.version.outputs.FULL_VERSION }}
7767
7868 # Publish NuGet packages to nuget.org
7969 - name : Publish to NuGet
0 commit comments