Skip to content

Commit

Permalink
Final touch to workflow nuget bug
Browse files Browse the repository at this point in the history
Signed-off-by: Alireza Poodineh <itsaeliux@gmail.com>
  • Loading branch information
Aeliux committed Oct 6, 2024
1 parent 9e481ec commit ccc33e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Deploy to Github packages
continue-on-error: true
run: |
for TARGET in artifacts/packages/${{ matrix.configuration }}/*.*nupkg
for TARGET in artifacts/packages/${{ matrix.configuration }}/*.nupkg
do
echo Uploading $TARGET
dotnet nuget push $TARGET --api-key ${{ secrets.GITHUB_TOKEN }} --source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" --skip-duplicate || continue
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Deploy to NuGet gallery
continue-on-error: true
run: |
for TARGET in artifacts/packages/${{ matrix.configuration }}/*.*nupkg
for TARGET in artifacts/packages/${{ matrix.configuration }}/*.nupkg
do
echo Uploading $TARGET
dotnet nuget push $TARGET --api-key ${{ secrets.NUGET_API_KEY }} --source "nuget.org" --skip-duplicate || continue
Expand Down

0 comments on commit ccc33e6

Please sign in to comment.