Skip to content

Commit

Permalink
Regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed May 15, 2023
1 parent edd2c35 commit a796255
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public partial class CoverallsNetSettings : ToolSettings
/// <summary>
/// The job Id to provide to coveralls.io. Default is <c>0</c>.
/// </summary>
public virtual int? JobId { get; internal set; }
public virtual string JobId { get; internal set; }
/// <summary>
/// The service-name for the coverage report. Default is <c>coveralls.net</c>.
/// </summary>
Expand Down Expand Up @@ -859,7 +859,7 @@ public static T ResetCommitMessage<T>(this T toolSettings) where T : CoverallsNe
/// <p>The job Id to provide to coveralls.io. Default is <c>0</c>.</p>
/// </summary>
[Pure]
public static T SetJobId<T>(this T toolSettings, int? jobId) where T : CoverallsNetSettings
public static T SetJobId<T>(this T toolSettings, string jobId) where T : CoverallsNetSettings
{
toolSettings = toolSettings.NewInstance();
toolSettings.JobId = jobId;
Expand Down
2 changes: 1 addition & 1 deletion source/Nuke.Common/Tools/Docker/Docker.Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15365,7 +15365,7 @@ protected override Arguments ConfigureProcessArguments(Arguments arguments)
[PublicAPI]
[ExcludeFromCodeCoverage]
[Serializable]
public partial class DockerStackDeploySettings : DockerStackSettings
public partial class DockerStackDeploySettings : DockerSettings
{
/// <summary>
/// Path to the Docker executable.
Expand Down

0 comments on commit a796255

Please sign in to comment.