Skip to content

Commit 5170b91

Browse files
committed
Update dotnet.yml
1 parent 02a8357 commit 5170b91

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/dotnet.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ jobs:
7171
dotnet nuget push $package --source https://f.feedz.io/loresoft/open/nuget/index.json --api-key ${{ secrets.FEEDDZ_KEY }} --skip-duplicate
7272
done
7373
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+
7481
- name: Publish Packages Nuget
7582
if: startsWith(github.ref, 'refs/tags/v')
7683
run: |

0 commit comments

Comments
 (0)