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 b8af536 commit 4d21326Copy full SHA for 4d21326
.github/workflows/docs.yml
@@ -20,6 +20,8 @@ jobs:
20
giza:
21
name: "Build Docs"
22
runs-on: "ubuntu-20.04"
23
+ container:
24
+ image: python:2.7.18-buster
25
26
steps:
27
- name: "Checkout library"
@@ -35,10 +37,9 @@ jobs:
35
37
path: docs
36
38
fetch-depth: 2
39
- - name: "Setup python"
- uses: actions/setup-python@v4
40
- with:
41
- python-version: '2.7'
+ # python:2.7.18-buster does not include rsync
+ - name: "Install rsync"
42
+ run: "apt-get update && apt-get -y install rsync"
43
44
# The requirements file installs urllib3 with an incompatible version; we replace it with one that works
45
- name: "Install giza"
0 commit comments