Skip to content

Commit 0f83125

Browse files
committed
fix(docs): add echo statements to display PROJECT_VERSION during documentation build
1 parent d3f54ea commit 0f83125

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.readthedocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ build:
1414
# Copy the appropriate conf.py based on project name
1515
- |
1616
if [ "$PROJECT_VERSION" = "brainpy-version2" ]; then
17+
echo "PROJECT_VERSION is: $PROJECT_VERSION"
1718
echo "Building brainpy-version2 documentation"
1819
mkdir -p docs_build
1920
cp -r docs_version2/* docs_build/
2021
else
22+
echo "PROJECT_VERSION is: $PROJECT_VERSION"
2123
echo "Building standard brainpy documentation"
2224
mkdir -p docs_build
2325
cp -r docs/* docs_build/

0 commit comments

Comments
 (0)