From 5a87d77da501ba77ea26214455cc77093e1d203c Mon Sep 17 00:00:00 2001 From: Daniel Bohlin Date: Wed, 29 Apr 2026 03:56:37 +0200 Subject: [PATCH] ci: pack and publish Tharga.Console.Standard Add Tharga.Console.Standard to the workflow's pack step so all three NuGet packages ship together. Uses the same MAJOR_MINOR.PATCH version as the other two. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f3ccec6..da4b8cc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -98,6 +98,7 @@ jobs: - name: Pack run: | dotnet pack Tharga.Console/Tharga.Console.csproj -c Release --no-build -o ./artifacts -p:PackageVersion=${{ steps.version.outputs.version }} + dotnet pack Tharga.Console.Standard/Tharga.Console.Standard.csproj -c Release --no-build -o ./artifacts -p:PackageVersion=${{ steps.version.outputs.version }} dotnet pack Tharga.Console.Speech/Tharga.Console.Speech.csproj -c Release --no-build -o ./artifacts -p:PackageVersion=${{ steps.version.outputs.version }} - name: Upload artifacts