Skip to content

Commit ecde135

Browse files
committed
Try this
1 parent f97844e commit ecde135

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/publish-wiki.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,17 @@ jobs:
7777
# Update Wiki files.
7878
# ################################################################################
7979

80+
# Updating the lists can fail intermittently, typically after Microsoft has released a new package.
81+
# This should not be blocking for this job, so ignore any errors from this step.
82+
# Ref: https://github.com/dotnet/core/issues/4167
83+
- name: Update the available packages list
84+
continue-on-error: true
85+
run: sudo apt-get update
86+
87+
# DiffUtils is needed for the Wiki Reporting - diff report code sample generation.
88+
- name: Install diffutils
89+
run: sudo apt-get install --no-install-recommends -y diffutils
90+
8091
- name: Install DocToc table of contents generator
8192
run: npm install -g doctoc
8293

0 commit comments

Comments
 (0)