This is an automated email from the ASF dual-hosted git repository. zhongjiajie pushed a commit to branch revert-990-skip-py-docs in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-website.git
commit dd7f2f8f6faf7ee47ff48360d55308984d046ea7 Author: Jay Chung <[email protected]> AuthorDate: Tue Jan 20 14:40:44 2026 +0800 Revert "hotfix: tmp remove python docs build (#990)" This reverts commit 72973eb92d36752d570464f7460b5ae619fc43a3. --- .github/workflows/website.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index becb4dffa6..ba0b3092e2 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -35,17 +35,17 @@ jobs: run: yarn && yarn build # Build Python API document: from https://github.com/apache/dolphinscheduler-sdk-python -# - name: Set up Python -# uses: actions/setup-python@v4 -# with: -# python-version: 3.11 -# - name: Build Python Multiple Version Document -# working-directory: ${{ env.PYDS_HOME }} -# # rsync all files in directory docs/build/html/versions expect .doctrees have sensitive data, so we need to delete it -# run: | -# python -m pip install --upgrade ${{ env.DEPENDENCES }} -# python -m tox -vv -e doc-build-multi -# rsync -av --progress --exclude .doctrees docs/build/html/versions/* ${GITHUB_WORKSPACE}/build/python + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.11 + - name: Build Python Multiple Version Document + working-directory: ${{ env.PYDS_HOME }} + # rsync all files in directory docs/build/html/versions expect .doctrees have sensitive data, so we need to delete it + run: | + python -m pip install --upgrade ${{ env.DEPENDENCES }} + python -m tox -vv -e doc-build-multi + rsync -av --progress --exclude .doctrees docs/build/html/versions/* ${GITHUB_WORKSPACE}/build/python - name: Deploy if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
