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 806b875 commit 1c7babeCopy full SHA for 1c7babe
.github/workflows/docs.yml
@@ -36,6 +36,11 @@ jobs:
36
activate-environment: rmg_env
37
use-mamba: true
38
39
+ - name: Make libtiff Symlink to Avoid Runner Bug
40
+ run: | # This action may need to be removed/adjusted in future runs.
41
+ if [ ! -f /usr/lib/x86_64-linux-gnu/libtiff.so.5 ] && [ -f /usr/lib/x86_64-linux-gnu/libtiff.so.6 ]; then sudo ln -s /usr/lib/x86_64-linux-gnu/libtiff.so.6 /usr/lib/x86_64-linux-gnu/libtiff.so.5; fi
42
+ find /usr/lib -name libtiff*
43
+
44
- name: Install sphinx
45
run: mamba install -y sphinx
46
0 commit comments