Skip to content

Commit

Permalink
Skip log artifact if binlog disabled (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
jviau authored Oct 9, 2023
1 parent 6dcf519 commit 273db1a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions azure-pipelines-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,6 @@ steps:
artifact: pkg

- publish: $(log_dir)
condition: eq('${{ parameters.binlog }}', true)
displayName: 'Publish logs to Artifacts'
artifact: log
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ class EventTaskCompletionSource<T> : TaskCompletionSource<T>, IEventSource
/// <inheritdoc/>
public Type EventType => typeof(T);


/// <inheritdoc/>
void IEventSource.TrySetResult(object result) => this.TrySetResult((T)result);
}
Expand Down

0 comments on commit 273db1a

Please sign in to comment.