Skip to content

Commit

Permalink
Make Install Dependencies step actually use the 'requirements.txt' Fi…
Browse files Browse the repository at this point in the history
…le in 'github-pages.yaml' Workflow
  • Loading branch information
og-mrk committed Aug 8, 2024
1 parent 660a850 commit dff3ed1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
python-version: 3.x # Install latest Stable release of Python 3
cache: 'pip' # caching pip dependencies

- name: Install Necessary Dependencies using 'pip'
run: pip install mkdocs-material pillow cairosvg mkdocs-awesome-pages-plugin mkdocs-git-revision-date-localized-plugin mkdocs-minify-plugin
- name: Install Necessary Dependencies using 'pip install -r requirements.txt'
run: pip install -r requirements.txt

- name: Build & Deploy using 'mkdocs'
run: mkdocs gh-deploy --force

0 comments on commit dff3ed1

Please sign in to comment.