Skip to content

Commit f6a950e

Browse files
2 parents 0570344 + 8489a38 commit f6a950e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99

10-
runs-on: ubuntu-latest
10+
runs-on: windows-latest
1111

1212
steps:
1313
- uses: actions/checkout@v2
@@ -21,3 +21,5 @@ jobs:
2121
run: dotnet build --configuration Release --no-restore src/EventSourcingOnAzureFunctions.sln
2222
- name: Test
2323
run: dotnet test --configuration Release --no-build --verbosity normal src/EventSourcingOnAzureFunctions.sln
24+
- name: Generate NuGet package
25+
run: dotnet pack --no-build --include-source -c Release src/EventSourcingOnAzureFunctions.Common/EventSourcingOnAzureFunctions.Common.csproj -o nupkgs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The [azure functions](https://azure.microsoft.com/en-us/services/functions/) cod
8989

9090
## Comparison to other event sourcing implementations
9191

92-
In this library the state of an entity has to be retrieved on demand - this is to allow for the functions application to be spun down to nothing and indeed for multiple independent azure functions applications to use the same underlying event stream without having to have any "always on" consistency service.
92+
In this library the state of an entity has to be **retrieved on demand** - this is to allow for the functions application to be spun down to nothing and indeed for multiple independent azure functions applications to use the same underlying event stream without having to have any "always on" consistency service.
9393

9494
## Requirements
9595

0 commit comments

Comments
 (0)