We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb4ff3c commit 12e948fCopy full SHA for 12e948f
.github/workflows/dotnet-core.yml
@@ -17,10 +17,14 @@ jobs:
17
uses: actions/setup-dotnet@v1
18
with:
19
dotnet-version: 6.0.x
20
- include-prerelease: true
21
- name: Install dependencies
22
run: dotnet restore
23
- name: Build
24
run: dotnet build --configuration Release --no-restore
25
- name: Test
26
run: dotnet test --no-restore --verbosity normal
+ - 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