diff --git a/.github/workflows/nuget-package-template.yml b/.github/workflows/nuget-package-template.yml index b0e38f9..13d47d0 100644 --- a/.github/workflows/nuget-package-template.yml +++ b/.github/workflows/nuget-package-template.yml @@ -97,12 +97,12 @@ jobs: echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV fi - # - name: Build, pack and publish - # working-directory: ${{ inputs.project_path }} - # run: | - # dotnet build -c Release - # dotnet pack -c Release -p:PackageVersion=${{ env.NEW_VERSION }} --output . - # dotnet nuget push "*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/DFE-Digital/index.json + - name: Build, pack and publish + working-directory: ${{ inputs.project_path }} + run: | + dotnet build -c Release + dotnet pack -c Release -p:PackageVersion=${{ env.NEW_VERSION }} --output . + dotnet nuget push "*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/DFE-Digital/index.json - name: Get Release Note id: extract_description diff --git a/src/DfE.CoreLibs.Testing/readme.md b/src/DfE.CoreLibs.Testing/readme.md index ddf80ec..5b18f23 100644 --- a/src/DfE.CoreLibs.Testing/readme.md +++ b/src/DfE.CoreLibs.Testing/readme.md @@ -12,6 +12,7 @@ dotnet add package DfE.CoreLibs.Testing ## Usage + ### Usage of Customization Attributes In your tests, you can use `CustomAutoData` to easily inject customizations like `AutoMapperCustomization`, this Customization scans your assembly for profiles and registers them automatically.