Skip to content

Commit ee679a0

Browse files
temporarily disable branch check for CI nuget push
1 parent 51ae923 commit ee679a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/CI/azp-dotnet-dist.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ steps:
1616

1717
- task: DotNetCoreCLI@2
1818
displayName: 'dotnet push to UiPath-Internal'
19-
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
19+
condition: succeeded()
2020
inputs:
2121
command: push
2222
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg'
2323
publishVstsFeed: 'Public.Feeds/UiPath-Internal'
2424

2525
- task: PublishSymbols@2
2626
displayName: 'Publish Symbols to UiPath Azure Artifacts Symbol Server'
27-
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
27+
condition: succeeded()
2828
inputs:
2929
symbolsFolder: $(Build.SourcesDirectory)
3030
searchPattern: '**/UiPath.CoreIpc/bin/**/UiPath.CoreIpc.pdb'

src/UiPath.CoreIpc/Dtos.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public TResult Deserialize<TResult>(ISerializer serializer, bool objectParameter
4646
[Serializable]
4747
public record Error(string Message, string StackTrace, string Type, Error InnerError)
4848
{
49-
[return: NotNullIfNotNull(nameof(exception))]
49+
[return: NotNullIfNotNull("exception")]
5050
public static Error? FromException(Exception? exception)
5151
=> exception is null
5252
? null

0 commit comments

Comments
 (0)