Skip to content

Commit d20cc51

Browse files
committed
Add github action step to build KafkaCancellationNotifier
1 parent 315919b commit d20cc51

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
- name: Create ConductorSharp.Patterns package
3030
run: dotnet pack --no-restore ./src/ConductorSharp.Patterns -c Release
3131
- name: Create ConductorSharp.Toolkit package
32-
run: dotnet pack --no-restore ./src/ConductorSharp.Toolkit -c Release
32+
run: dotnet pack --no-restore ./src/ConductorSharp.Toolkit -c Release
33+
- name: Create ConductorSharp.KafkaCancellationNotifier package
34+
run: dotnet pack --no-restore ./src/ConductorSharp.KafkaCancellationNotifier -c Release
3335

3436
- name: Publish ConductorSharp.Client package
3537
run: dotnet nuget push ./src/ConductorSharp.Client/bin/Release/ConductorSharp.Client*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
@@ -39,3 +41,5 @@ jobs:
3941
run: dotnet nuget push ./src/ConductorSharp.Patterns/bin/Release/ConductorSharp.Patterns*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
4042
- name: Publish ConductorSharp.Toolkit package
4143
run: dotnet nuget push ./src/ConductorSharp.Toolkit/bin/Release/ConductorSharp.Toolkit*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
44+
- name: Publish ConductorSharp.KafkaCancellationNotifier package
45+
run: dotnet nuget push ./src/ConductorSharp.KafkaCancellationNotifier/bin/Release/ConductorSharp.KafkaCancellationNotifier*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json

src/ConductorSharp.Client/ConductorSharp.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Authors>Codaxy</Authors>
77
<Company>Codaxy</Company>
88
<PackageId>ConductorSharp.Client</PackageId>
9-
<Version>3.2.0-experimental.1</Version>
9+
<Version>3.2.0-alpha.2</Version>
1010
<Description>Client library for Netflix Conductor, with some additional quality of life features.</Description>
1111
<RepositoryUrl>https://github.com/codaxy/conductor-sharp</RepositoryUrl>
1212
<PackageTags>netflix;conductor</PackageTags>

src/ConductorSharp.Engine/ConductorSharp.Engine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Authors>Codaxy</Authors>
77
<Company>Codaxy</Company>
88
<PackageId>ConductorSharp.Engine</PackageId>
9-
<Version>3.2.0-experimental.1</Version>
9+
<Version>3.2.0-alpha.2</Version>
1010
<Description>Client library for Netflix Conductor, with some additional quality of life features.</Description>
1111
<RepositoryUrl>https://github.com/codaxy/conductor-sharp</RepositoryUrl>
1212
<PackageTags>netflix;conductor</PackageTags>

src/ConductorSharp.KafkaCancellationNotifier/ConductorSharp.KafkaCancellationNotifier.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<Version>3.2.0-experimental.1</Version>
7+
<Version>3.2.0-alpha.2</Version>
88
<Authors>Codaxy</Authors>
99
<Company>Codaxy</Company>
1010
</PropertyGroup>

src/ConductorSharp.Patterns/ConductorSharp.Patterns.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
88
<Authors>Codaxy</Authors>
99
<Company>Codaxy</Company>
10-
<Version>3.2.0-experimental.1</Version>
10+
<Version>3.2.0-alpha.2</Version>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)