From a9966bc0933e7442fd5484fa3063bd5dcab467c4 Mon Sep 17 00:00:00 2001 From: Alexander Kopetsch Date: Mon, 27 May 2024 17:15:58 +0200 Subject: [PATCH] GitHub Action: specify ASSEMBLY_NAME --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2945180..04e813e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,7 +39,7 @@ jobs: uses: actions/setup-dotnet@v3 # Create the NuGet package in the folder from the environment variable NuGetDirectory - - run: dotnet pack --configuration Release --output ${{ env.NUGET_DIRECTORY }} + - run: dotnet pack ${{ env.ASSEMBLY_NAME }} --configuration Release --output ${{ env.NUGET_DIRECTORY }} # Publish the NuGet package as an artifact, so they can be used in the following jobs - uses: actions/upload-artifact@v3