Skip to content

Commit 13094cc

Browse files
fixed release pipeline (#415)
Needs to automatically bump versions via the `RELEASE_NOTES.md` each time we push
1 parent 2ad2497 commit 13094cc

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/pr_validation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
shell: pwsh
3535
run: |
3636
./build.ps1
37+
3738
- name: "dotnet pack"
3839
run: dotnet pack -c Release -o bin/nuget
3940

.github/workflows/publish_nuget.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
with:
2222
dotnet-version: ${{ env.DOTNET_VERSION }}
2323

24+
- name: "Update release notes and version"
25+
shell: pwsh
26+
run: |
27+
./build.ps1
28+
2429
- name: Create Packages
2530
run: dotnet pack -c Release -o ./output
2631

Akka.Templates.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<PackageType>Template</PackageType>
4-
<VersionPrefix>1.1.0</VersionPrefix>
4+
<VersionPrefix>1.2.0</VersionPrefix>
55
<PackageId>Akka.Templates</PackageId>
66
<Title>Akka.NET Project Templates</Title>
77
<Copyright>Copyright © 2013-2025 Akka.NET Team</Copyright>
88
<Authors>AkkaDotNet</Authors>
99
<Description>Templates to use when creating new Akka.NET applications.</Description>
1010
<PackageTags>dotnet-new;templates;akkadotnet;akka;</PackageTags>
11-
<PackageReleaseNotes>* 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
12-
* Upgraded to [Akka.NET v1.5.38](https://github.com/akkadotnet/akka.net/releases/tag/1.5.38)</PackageReleaseNotes>
11+
<PackageReleaseNotes>* 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</PackageReleaseNotes>
1312
<TargetFramework>netstandard2.0</TargetFramework>
1413
<IncludeContentInPack>true</IncludeContentInPack>
1514
<IncludeBuildOutput>false</IncludeBuildOutput>

0 commit comments

Comments
 (0)