File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 77
77
# Update Wiki files.
78
78
# ################################################################################
79
79
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
+
80
91
- name : Install DocToc table of contents generator
81
92
run : npm install -g doctoc
82
93
You can’t perform that action at this time.
0 commit comments