Skip to content

Commit

Permalink
fix docgen - now requires recursive checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18281828 committed May 9, 2023
1 parent 657c72a commit 34a6829
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/sphinx-docgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,31 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive

- name: Setup Pages
uses: actions/configure-pages@v2
- uses: actions/setup-python@v2

- name: Yarn install
run: |
yarn install --production
- name: Install Python requirements and SOLC
run: |
pip install --upgrade pip
pip install -r site/requirements.txt
pip install solc-select
solc-select install 0.8.17
- name: Sphinx Gendoc
env:
SOLC_VERSION: 0.8.17
run: |
bin/gendoc.sh
sphinx-build -b html site ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1

Expand Down

0 comments on commit 34a6829

Please sign in to comment.