From 9ebfbd1a37b6dc8d972f8208cb2dbeec117f0511 Mon Sep 17 00:00:00 2001 From: Neil Dwyer Date: Thu, 11 Jan 2024 14:19:57 -0800 Subject: [PATCH] checkout with submodules --- .github/workflows/build-docs.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 0886931a..a949b9e4 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -42,21 +42,8 @@ jobs: steps: - uses: actions/checkout@v3 - - - name: Generate Egg Info - run: python ${{ inputs.package_dir }}/setup.py egg_info - - - name: Find requires.txt - run: | - # Search for requirements.txt file and store its content in an environment variable - REQUIREMENTS_FILE=$(find . -type f -name "requires.txt") - echo "Found requires.txt file at: $REQUIREMENTS_FILE" - - if [ -n "$REQUIREMENTS_FILE" ]; then - echo "REQUIREMENTS_FILE=$REQUIREMENTS_FILE" >> $GITHUB_ENV - else - echo "No requiress.txt file found." - fi + with: + submodules: recursive - name: Install Package to Document run: python -m pip install ${{ inputs.package_dir }}/