Skip to content

Commit

Permalink
fixed workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gandalfr-KY committed Mar 26, 2024
1 parent 83eb7e2 commit 387f647
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/gh_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,21 @@ on:

jobs:
build-and-deploy:
name: Build and deploy
strategy:
matrix:
python-version: ["3.10"]
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get update
sudo apt-get install -y make
pip install sphinx sphinx-autoapi
- name: Build docs
run:
cd ./api && \
run: |
cd ./api
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
Expand Down

0 comments on commit 387f647

Please sign in to comment.