File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,11 +86,11 @@ jobs:
8686 with :
8787 name : NuGet Packages-${{ matrix.configuration }}
8888 path : |
89- 'artifacts/package/${{ matrix.configuration | toLower }}/*.nupkg'
90- 'artifacts/package/${{ matrix.configuration | toLower }}/*.snupkg'
89+ 'artifacts/package/${{ toLower( matrix.configuration) }}/*.nupkg'
90+ 'artifacts/package/${{ toLower( matrix.configuration) }}/*.snupkg'
9191
9292 - name : Publish NuGet Packages
9393 if : matrix.configuration == 'Release' && github.ref == 'refs/heads/dev'
9494 run : |
95- dotnet nuget push "artifacts/package/${{ matrix.configuration | toLower }}/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
96- dotnet nuget push "artifacts/package/${{ matrix.configuration | toLower }}/*.snupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate || true
95+ dotnet nuget push "artifacts/package/${{ toLower( matrix.configuration) }}/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
96+ dotnet nuget push "artifacts/package/${{ toLower( matrix.configuration) }}/*.snupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate || true
You can’t perform that action at this time.
0 commit comments