Skip to content

Commit 1d98cf5

Browse files
committed
Add Upload artifacts
1 parent 9c2389e commit 1d98cf5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/dotnet-core.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,10 @@ jobs:
5151
- if: ${{ success() && runner.os == 'Windows' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) }}
5252
name: Publish Nuget to GitHub registry
5353
run: dotnet nuget push .\artifacts\packages\*.nupkg -s https://nuget.pkg.github.com/NetLah/index.json --skip-duplicate -k ${{ secrets.PUSH_GITHUB_REGISTRY_TOKEN }}
54+
55+
- name: Upload artifacts
56+
if: github.event_name == 'push'
57+
uses: actions/upload-artifact@v4
58+
with:
59+
name: DotnetAppSettings
60+
path: artifacts/packages

0 commit comments

Comments
 (0)