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 02a8357 commit 5170b91Copy full SHA for 5170b91
.github/workflows/dotnet.yml
@@ -71,6 +71,13 @@ jobs:
71
dotnet nuget push $package --source https://f.feedz.io/loresoft/open/nuget/index.json --api-key ${{ secrets.FEEDDZ_KEY }} --skip-duplicate
72
done
73
74
+ - name: Publish Packages GitHub
75
+ run: |
76
+ for package in $(find -name "*.nupkg"); do
77
+ echo "${0##*/}": Pushing $package...
78
+ dotnet nuget push $package --source https://nuget.pkg.github.com/loresoft/index.json --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate
79
+ done
80
+
81
- name: Publish Packages Nuget
82
if: startsWith(github.ref, 'refs/tags/v')
83
run: |
0 commit comments