From 13094cc7f2ec0dd6e9d4392e51caf6dbba3b180e Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Tue, 25 Feb 2025 20:13:27 -0600 Subject: [PATCH] fixed release pipeline (#415) Needs to automatically bump versions via the `RELEASE_NOTES.md` each time we push --- .github/workflows/pr_validation.yml | 1 + .github/workflows/publish_nuget.yml | 5 +++++ Akka.Templates.csproj | 5 ++--- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr_validation.yml b/.github/workflows/pr_validation.yml index 46f39c0..451c528 100644 --- a/.github/workflows/pr_validation.yml +++ b/.github/workflows/pr_validation.yml @@ -34,6 +34,7 @@ jobs: shell: pwsh run: | ./build.ps1 + - name: "dotnet pack" run: dotnet pack -c Release -o bin/nuget diff --git a/.github/workflows/publish_nuget.yml b/.github/workflows/publish_nuget.yml index bc6fd4e..a4de59b 100644 --- a/.github/workflows/publish_nuget.yml +++ b/.github/workflows/publish_nuget.yml @@ -21,6 +21,11 @@ jobs: with: dotnet-version: ${{ env.DOTNET_VERSION }} + - name: "Update release notes and version" + shell: pwsh + run: | + ./build.ps1 + - name: Create Packages run: dotnet pack -c Release -o ./output diff --git a/Akka.Templates.csproj b/Akka.Templates.csproj index 735ba7e..d50b3b4 100644 --- a/Akka.Templates.csproj +++ b/Akka.Templates.csproj @@ -1,15 +1,14 @@ Template - 1.1.0 + 1.2.0 Akka.Templates Akka.NET Project Templates Copyright © 2013-2025 Akka.NET Team AkkaDotNet Templates to use when creating new Akka.NET applications. dotnet-new;templates;akkadotnet;akka; - * Added F# template support for the [Akka.Console template](https://github.com/akkadotnet/akkadotnet-templates/blob/dev/docs/ConsoleTemplate.md) - see the docs for an example -* Upgraded to [Akka.NET v1.5.38](https://github.com/akkadotnet/akka.net/releases/tag/1.5.38) + * Added F# template support for the [Akka.Streams template](https://github.com/akkadotnet/akkadotnet-templates/blob/dev/docs/AkkaStreamsTemplate.md) - see the docs for an example netstandard2.0 true false