We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e954984 commit 13825ffCopy full SHA for 13825ff
2 files changed
.github/workflows/dotnet.yml
@@ -67,7 +67,7 @@ jobs:
67
os: windows-latest
68
name: win-x64
69
- rid: linux-x64
70
- os: ubuntu-20.04
+ os: ubuntu-22.04
71
name: linux-x64
72
- rid: osx-arm64
73
os: macos-latest
eng/build/Build.Website.cs
@@ -174,9 +174,11 @@ async Task FullBuildWebsiteAsync()
174
{
175
if (!SkipContributorsScrape)
176
177
+ var authors = await GetAuthorsContents().ToListAsync();
178
+ Log.Information("Result: {}", string.Join(' ', authors));
179
await File.WriteAllLinesAsync(
180
RootDirectory / "sources" / "Website" / "blog" / "authors.yml",
- await GetAuthorsContents().ToListAsync()
181
+ authors
182
);
183
}
184
0 commit comments