Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed release pipeline #415

Merged
merged 1 commit into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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