Skip to content

Commit 163ed9a

Browse files
committed
install git into container
1 parent 2b5d7d2 commit 163ed9a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,12 @@ jobs:
2828
- name: Checkout
2929
uses: actions/checkout@v2
3030

31-
- name: additional sphinx install
32-
run: pip3 install -r requirements.txt
33-
31+
- name: additional env setup
32+
run: |
33+
pip3 install -r requirements.txt
34+
apt-get -y update
35+
apt-get -y install git
36+
3437
- name: quick build docs
3538
run: |
3639
mkdir -p dist/en

0 commit comments

Comments
 (0)