File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -203,13 +203,7 @@ jobs:
203203 # Repeat the run for these inputs: Fido2, Fido2.Models, Fido2.Aspnet
204204 - name : Publish package to NuGet Registry
205205 if : ${{ github.event_name == 'release' }}
206- run : >
207- dotnet nuget push **/Fido2.nupkg
208- --source https://api.nuget.org/v3/index.json
209- --api-key ${{ secrets.nuget_api_key }}
210- dotnet nuget push **/Fido2.Models.nupkg
211- --source https://api.nuget.org/v3/index.json
212- --api-key ${{ secrets.nuget_api_key }}
213- dotnet nuget push **/Fido2.AspNet.nupkg
214- --source https://api.nuget.org/v3/index.json
215- --api-key ${{ secrets.nuget_api_key }}
206+ run : |
207+ dotnet nuget push **/Fido2.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.nuget_api_key }}
208+ dotnet nuget push **/Fido2.Models.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.nuget_api_key }}
209+ dotnet nuget push **/Fido2.AspNet.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.nuget_api_key }}
You can’t perform that action at this time.
0 commit comments