We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c2389e commit 1d98cf5Copy full SHA for 1d98cf5
.github/workflows/dotnet-core.yml
@@ -51,3 +51,10 @@ jobs:
51
- if: ${{ success() && runner.os == 'Windows' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) }}
52
name: Publish Nuget to GitHub registry
53
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