Skip to content

Commit b24bad0

Browse files
committed
quite wildcard nupkg reference so the nuget tooling does the wildcard explosion and not bash
1 parent 2bc33a8 commit b24bad0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
if: github.event_name == 'push' && startswith(github.ref, 'refs/heads')
4646
shell: bash
4747
run: |
48-
until dotnet nuget push build/output/*.nupkg -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate --no-symbols true; do echo "Retrying"; sleep 1; done;
48+
until dotnet nuget push 'build/output/*.nupkg' -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate --no-symbols true; do echo "Retrying"; sleep 1; done;
4949
5050
- run: ./build.sh generatereleasenotes -s true
5151
name: Generate release notes for tag
@@ -54,6 +54,6 @@ jobs:
5454
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags')
5555
name: Create or update release for tag on github
5656

57-
- run: dotnet nuget push build/output/*.nupkg -k ${{secrets.NUGET_ORG_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols true
57+
- run: dotnet nuget push 'build/output/*.nupkg' -k ${{secrets.NUGET_ORG_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols true
5858
name: release to nuget.org
5959
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags')

0 commit comments

Comments
 (0)