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 343644d commit 69af687Copy full SHA for 69af687
.circleci/config.yml
@@ -555,7 +555,9 @@ jobs:
555
python -m pip install --no-cache-dir -r docs/requirements.txt
556
- run:
557
name: Build only this commit
558
- command: make -C docs SPHINXOPTS="-W" BUILDDIR="$HOME/docs" CURBRANCH=${CIRCLE_TAG:-CIRCLE_BRANCH} html
+ command: |
559
+ BRANCH=$( echo $CIRCLE_BRANCH | sed 's+/+_+g' )
560
+ make -C docs SPHINXOPTS="-W" BUILDDIR="$HOME/docs" CURBRANCH=${CIRCLE_TAG:-$BRANCH} html
561
- store_artifacts:
562
path: ~/docs
563
0 commit comments