Skip to content

Commit

Permalink
Merge pull request #45 from StrangeRanger/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeRanger authored Sep 27, 2024
2 parents ed422c9 + 36a5df3 commit 2bb6e46
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/mkdocs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,18 @@ permissions:
jobs:
deploy:
runs-on: ubuntu-latest
env:
PIPENV_VENV_IN_PROJECT: 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pipenv'
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 Pipenv
run: python -m pip install pipenv

- name: Install dependencies with Pipenv
run: pipenv install --deploy --ignore-pipfile
Expand Down

0 comments on commit 2bb6e46

Please sign in to comment.