We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent8c9b98d commit3934936Copy full SHA for 3934936
.github/workflows/build.yml
@@ -27,7 +27,8 @@ jobs:
27
steps:
28
-name:Get current branch name
29
shell:bash
30
-run:echo "CURRENT_BRANCH=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV
+run:|
31
+ echo "CURRENT_BRANCH=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV
32
-name:Check out ${{ github.repository }}
33
uses:actions/checkout@v2
34
with:
@@ -46,13 +47,14 @@ jobs:
46
47
python-version:'3.9'
48
-name:Install dependencies
49
run:|
- sudo apt update && sudo apt install gettext
50
+ sudo apt update-y&& sudo apt install gettext -y
51
pip3 install --upgrade pip
52
pip3 install -r requirements.txt -r cpython/Doc/requirements.txt
53
-uses:ammaraskar/sphinx-problem-matcher@master
54
-name:Build docs
55
56
mkdir logs
57
+ echo "::add-matcher::.github/problem-matchers/sphinx.json"
58
sh scripts/build.sh 2> >(tee -a logs/error.log >&2)
59
env:
60
LANGUAGE:${{ env.LANGUAGE }}