Skip to content

Commit 12e948f

Browse files
authored
publish artifacts on builds (#97)
1 parent bb4ff3c commit 12e948f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/dotnet-core.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ jobs:
1717
uses: actions/setup-dotnet@v1
1818
with:
1919
dotnet-version: 6.0.x
20-
include-prerelease: true
2120
- name: Install dependencies
2221
run: dotnet restore
2322
- name: Build
2423
run: dotnet build --configuration Release --no-restore
2524
- name: Test
2625
run: dotnet test --no-restore --verbosity normal
26+
- name: Publish NuGet package
27+
uses: actions/upload-artifact@v1
28+
with:
29+
name: NuGet package
30+
path: BitFaster.Caching/bin/Release/

0 commit comments

Comments
 (0)