Skip to content

Commit

Permalink
fix wildcards
Browse files Browse the repository at this point in the history
  • Loading branch information
dekoeky committed Oct 25, 2023
1 parent cab1467 commit 8ac4736
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/cache-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ jobs:
- run: ls .
- run: tree .
- run: |
dotnet nuget push "*.nupkg" \
--skip-duplicate \
-s https://api.nuget.org/v3/index.json \
--api-key ${{ secrets.NUGET_API_KEY }}
dotnet nuget push "**\*.nupkg" \
--skip-duplicate \
-s https://api.nuget.org/v3/index.json \
--api-key ${{ secrets.NUGET_API_KEY }}
upload-github:
name: Upload to GitHub
Expand All @@ -126,7 +126,7 @@ jobs:
- run: ls .
- run: tree .
- run: |
dotnet nuget push "*.nupkg" \
--skip-duplicate \
-s https://nuget.pkg.github.com/dekoeky/index.json \
--api-key ${{ secrets.GITHUB_TOKEN }}
dotnet nuget push "**\*.nupkg" \
--skip-duplicate \
-s https://nuget.pkg.github.com/dekoeky/index.json \
--api-key ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8ac4736

Please sign in to comment.