Skip to content

Commit 13825ff

Browse files
committed
Upgrade to Ubuntu 22.04, hopefully nothing breaks?
1 parent e954984 commit 13825ff

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
os: windows-latest
6868
name: win-x64
6969
- rid: linux-x64
70-
os: ubuntu-20.04
70+
os: ubuntu-22.04
7171
name: linux-x64
7272
- rid: osx-arm64
7373
os: macos-latest

eng/build/Build.Website.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,11 @@ async Task FullBuildWebsiteAsync()
174174
{
175175
if (!SkipContributorsScrape)
176176
{
177+
var authors = await GetAuthorsContents().ToListAsync();
178+
Log.Information("Result: {}", string.Join(' ', authors));
177179
await File.WriteAllLinesAsync(
178180
RootDirectory / "sources" / "Website" / "blog" / "authors.yml",
179-
await GetAuthorsContents().ToListAsync()
181+
authors
180182
);
181183
}
182184

0 commit comments

Comments
 (0)