Skip to content

Commit

Permalink
Merge pull request #30 from Pressio/29-deploy-docs-on-pushes-to-develop
Browse files Browse the repository at this point in the history
#29: Deploy docs on pushes to develop
  • Loading branch information
fnrizzi authored Nov 15, 2024
2 parents 6daf020 + 1511aa2 commit c3e1b6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Deploy docs

on:
push:
branches: [ main ]
branches: [ develop ]

jobs:
build-and-deploy-docs:
runs-on: ubuntu-latest
env:
docs-directory: /home/runner/work/pressio/pressio-ops/docs
docs-directory: ./docs
python-version: '3.10'

steps:
Expand All @@ -20,7 +20,7 @@ jobs:
architecture: 'x64'
- name: Install Python dependencies
run: |
pip3 install -r ./docs/build_requirements.txt
pip3 install -r ${{ env.docs-directory }}/build_requirements.txt
- name: Build documentation
working-directory: ${{ env.docs-directory }}
run: |
Expand Down

0 comments on commit c3e1b6b

Please sign in to comment.