Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeRanger committed Sep 27, 2024
1 parent 609e457 commit feb781e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/mkdocs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,25 @@ permissions:
jobs:
deploy:
runs-on: ubuntu-latest
env:
PIPENV_VENV_IN_PROJECT: 'true'
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.12'
cache: 'pipenv'
cache-dependency-path: Pipfile.lock

- name: Upgrade pip and install Pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Install dependencies with Pipenv
run: pipenv install --deploy
run: pipenv install --deploy --ignore-pipfile

- name: Build the site with MkDocs
run: pipenv run mkdocs build --strict
Expand Down

0 comments on commit feb781e

Please sign in to comment.