Skip to content

Commit

Permalink
Updated CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Feb 25, 2024
1 parent b755de0 commit adba277
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
4 changes: 2 additions & 2 deletions nuke/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ protected override void OnBuildInitialized()

if (ScheduledTargets.Contains(Default))
{
Version = $"{Version}-ci-{buildNumber}";
Version = $"{Version}-ci.buildNumber}";

Check failure on line 92 in nuke/Build.cs

View workflow job for this annotation

GitHub Actions / linux

A '}' character must be escaped (by doubling) in an interpolated string.

Check failure on line 92 in nuke/Build.cs

View workflow job for this annotation

GitHub Actions / windows

A '}' character must be escaped (by doubling) in an interpolated string.

Check failure on line 92 in nuke/Build.cs

View workflow job for this annotation

GitHub Actions / linux

A '}' character must be escaped (by doubling) in an interpolated string.

Check failure on line 92 in nuke/Build.cs

View workflow job for this annotation

GitHub Actions / windows

A '}' character must be escaped (by doubling) in an interpolated string.
}
else if (ScheduledTargets.Contains(PrePublish))
{
Version = $"{Version}-alpha-{buildNumber}";
Version = $"{Version}-beta.{buildNumber}";
}
}

Expand Down
10 changes: 0 additions & 10 deletions nuke/ReleaseNotesParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,6 @@
/// </remarks>
public sealed class ReleaseNotesParser
{
private readonly Regex _versionRegex;

/// <summary>
/// Initializes a new instance of the <see cref="ReleaseNotesParser"/> class.
/// </summary>
public ReleaseNotesParser()
{
_versionRegex = new Regex(@"(?<Version>\d+(\s*\.\s*\d+){0,3})(?<Release>-[a-z][0-9a-z-]*)?");
}

/// <summary>
/// Parses all release notes.
/// </summary>
Expand Down
1 change: 1 addition & 0 deletions src/AngleSharp.Css.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<authors>AngleSharp</authors>
<owners>Florian Rappl</owners>
<license type="expression">MIT</license>
<repository type="git" url="https://github.com/AngleSharp/AngleSharp.Css" />
<projectUrl>https://anglesharp.github.io</projectUrl>
<icon>logo.png</icon>
<readme>README.md</readme>
Expand Down

0 comments on commit adba277

Please sign in to comment.