From 80b2bdff4e3e5ca7274b3f9651e64a2323959486 Mon Sep 17 00:00:00 2001 From: X39 Date: Thu, 31 Oct 2024 03:13:57 +0100 Subject: [PATCH] Update package version in GitHub workflow to 5.1.0 In the GitHub Actions workflow file, change the package version from 5.0.0 to 5.1.0 to reflect the new release. This update ensures that the versioning is consistent with the project's release plan. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 716b771..f75095f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,6 +25,6 @@ jobs: - name: Pack # CHANGE PACKAGE VERSION - The retarded way # Change the /p:VERSION=X.X.X part to change the actual package version. - run: dotnet pack --configuration Release /p:VERSION=5.0.0.${{ github.run_number }} --version-suffix ${{ github.sha }} + run: dotnet pack --configuration Release /p:VERSION=5.1.0.${{ github.run_number }} --version-suffix ${{ github.sha }} - name: Upload to NuGet run: dotnet nuget push ./source/X39.Solutions.PdfTemplate/bin/Release/X39.Solutions.PdfTemplate.*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}