Skip to content

Commit

Permalink
fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
grzanka committed Oct 4, 2023
1 parent d455de8 commit dd806aa
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Deploy documentation content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
branches: ["master"]
pull_request:
branches: [main]
branches: [master]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -39,7 +39,9 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies for documentation
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies for mkdocs
run: poetry --directory docs install
- name: Build site
run: poetry --directory docs run mkdocs build
Expand Down

0 comments on commit dd806aa

Please sign in to comment.