Skip to content

Commit dbfe99e

Browse files
committed
Fixing build issues
1 parent 63486dc commit dbfe99e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ jobs:
219219
push_nugets:
220220
needs: [create_release]
221221
runs-on: ubuntu-latest
222-
name: Publish Release
222+
name: Push NuGets
223223
environment: production
224224

225225
steps:

MaterialDesignToolkit.Full.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{18401177
5454
ProjectSection(SolutionItems) = preProject
5555
.github\workflows\control_styles.yml = .github\workflows\control_styles.yml
5656
.github\workflows\icon_update.yml = .github\workflows\icon_update.yml
57+
.github\workflows\nightly_release.yml = .github\workflows\nightly_release.yml
5758
.github\workflows\pr_verification.yml = .github\workflows\pr_verification.yml
5859
.github\workflows\release.yml = .github\workflows\release.yml
5960
EndProjectSection

mdresgen/IconDiff.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ orderby version
2525
var oldNuget = nugets.First();
2626
var newNuget = nugets.Last();
2727

28-
string output = await CompareNuGets(oldNuget.File, newNuget.File);
28+
string output = await CompareNuGets(oldNuget.File, oldNuget.Version, newNuget.File, newNuget.Version);
2929

3030
await File.WriteAllTextAsync(Path.Combine(PathHelper.RepositoryRoot, $"IconChanges-{GetVersionString(oldNuget.Version)}--{GetVersionString(newNuget.Version)}.md"), output);
3131

0 commit comments

Comments
 (0)