@@ -50,7 +50,7 @@ extends:
50
50
displayName : NuGet push (react-native)
51
51
inputs :
52
52
script : nuget.exe push *.nupkg -ApiKey AzureArtifacts -Source https://pkgs.dev.azure.com/ms/_packaging/react-native/nuget/v3/index.json -NonInteractive -Verbosity Detailed -SkipDuplicate -NoSymbols
53
- workingDirectory : $(System.DefaultWorkingDirectory)/Publish /ReactWindows-final-nuget
53
+ workingDirectory : $(Pipeline.Workspace) /ReactWindows-final-nuget
54
54
- stage : PushToPublicAdoStage
55
55
displayName : ADO - react-native-public
56
56
jobs :
@@ -75,7 +75,7 @@ extends:
75
75
displayName : NuGet push (react-native-public)
76
76
inputs :
77
77
script : nuget.exe push *.nupkg -ApiKey AzureArtifacts -Source https://pkgs.dev.azure.com/ms/react-native/_packaging/react-native-public/nuget/v3/index.json -NonInteractive -Verbosity Detailed -SkipDuplicate -NoSymbols
78
- workingDirectory : $(System.DefaultWorkingDirectory)/Publish /ReactWindows-final-nuget
78
+ workingDirectory : $(Pipeline.Workspace) /ReactWindows-final-nuget
79
79
- stage : PushToNuGetStage
80
80
displayName : nuget.org - Push nuget packages
81
81
variables :
@@ -98,9 +98,9 @@ extends:
98
98
displayName : NuGet SetApiKey (nuget.org)
99
99
inputs :
100
100
script : nuget.exe SetApiKey $(nugetorg-apiKey-push)
101
- workingDirectory : $(System.DefaultWorkingDirectory)/Publish /ReactWindows-final-nuget
101
+ workingDirectory : $(Pipeline.Workspace) /ReactWindows-final-nuget
102
102
- task : CmdLine@2
103
103
displayName : NuGet push (nuget.org)
104
104
inputs :
105
105
script : nuget.exe push .\Microsoft.ReactNative.*.nupkg -Source https://api.nuget.org/v3/index.json -SkipDuplicate -NoSymbol -NonInteractive -Verbosity Detailed
106
- workingDirectory : $(System.DefaultWorkingDirectory)/Publish /ReactWindows-final-nuget
106
+ workingDirectory : $(Pipeline.Workspace) /ReactWindows-final-nuget
0 commit comments