Skip to content

Commit 69af687

Browse files
committed
fix: minimal typo in CircleCI workflow
1 parent 343644d commit 69af687

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,9 @@ jobs:
555555
python -m pip install --no-cache-dir -r docs/requirements.txt
556556
- run:
557557
name: Build only this commit
558-
command: make -C docs SPHINXOPTS="-W" BUILDDIR="$HOME/docs" CURBRANCH=${CIRCLE_TAG:-CIRCLE_BRANCH} html
558+
command: |
559+
BRANCH=$( echo $CIRCLE_BRANCH | sed 's+/+_+g' )
560+
make -C docs SPHINXOPTS="-W" BUILDDIR="$HOME/docs" CURBRANCH=${CIRCLE_TAG:-$BRANCH} html
559561
- store_artifacts:
560562
path: ~/docs
561563

0 commit comments

Comments
 (0)