Skip to content

Commit 9d9eba2

Browse files
committed
Added artifact publishing
1 parent 48dbc79 commit 9d9eba2

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/dotnet-core.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,11 @@ jobs:
2424
- name: Test
2525
run: dotnet test --no-restore --verbosity normal
2626
- name: Pack
27-
run: dotnet pack -c Release --no-build --no-restore
27+
run: |
28+
cd src/IdentityManager2
29+
dotnet pack -c Release -o IdentityManager2 --no-build
30+
- name: Publish
31+
uses: actions/upload-artifact@master
32+
with:
33+
name: IdentityManager2
34+
path: IdentityManager2

0 commit comments

Comments
 (0)