Skip to content

Commit

Permalink
fixed release pipeline (#415)
Browse files Browse the repository at this point in the history
Needs to automatically bump versions via the `RELEASE_NOTES.md` each time we push
  • Loading branch information
Aaronontheweb authored Feb 26, 2025
1 parent 2ad2497 commit 13094cc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pr_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
shell: pwsh
run: |
./build.ps1
- name: "dotnet pack"
run: dotnet pack -c Release -o bin/nuget

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 2 additions & 3 deletions Akka.Templates.csproj
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<VersionPrefix>1.1.0</VersionPrefix>
<VersionPrefix>1.2.0</VersionPrefix>
<PackageId>Akka.Templates</PackageId>
<Title>Akka.NET Project Templates</Title>
<Copyright>Copyright © 2013-2025 Akka.NET Team</Copyright>
<Authors>AkkaDotNet</Authors>
<Description>Templates to use when creating new Akka.NET applications.</Description>
<PackageTags>dotnet-new;templates;akkadotnet;akka;</PackageTags>
<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
* Upgraded to [Akka.NET v1.5.38](https://github.com/akkadotnet/akka.net/releases/tag/1.5.38)</PackageReleaseNotes>
<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>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
Expand Down

0 comments on commit 13094cc

Please sign in to comment.