From 131749d9cd3c40ab600514d0d6d12266b1945690 Mon Sep 17 00:00:00 2001 From: "R.Brown" Date: Tue, 31 Oct 2023 16:38:13 +0100 Subject: [PATCH] Update netlicensing-csharp-release.yml --- .github/workflows/netlicensing-csharp-release.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/netlicensing-csharp-release.yml b/.github/workflows/netlicensing-csharp-release.yml index 0b87e53..98bd2a5 100644 --- a/.github/workflows/netlicensing-csharp-release.yml +++ b/.github/workflows/netlicensing-csharp-release.yml @@ -21,13 +21,6 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore - name: Pack nugets - run: dotnet pack -c Release --no-build --output . + run: dotnet pack --configuration Release --no-build --output . - name: Push to NuGet run: dotnet nuget push "*.nupkg" --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json - #- name: Publish to NuGet - # uses: brandedoutcast/publish-nuget@v2 - # with: - # PROJECT_FILE_PATH: NetLicensingClient/NetLicensingClient.csproj - # VERSION_REGEX: '^\s*(.*)<\/PackageVersion>\s*$' - # TAG_FORMAT: '*' - # NUGET_KEY: ${{secrets.NUGET_API_KEY}}