Skip to content

Commit

Permalink
Merge pull request #44 from StrangeRanger/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeRanger authored Sep 27, 2024
2 parents 89717c7 + 609b9a9 commit ed422c9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 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
5 changes: 1 addition & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@ verify_ssl = true
name = "pypi"

[packages]
mkdocs = "==1.6.1"
mkdocs-git-revision-date-localized-plugin = "==1.2.9"
mkdocs-git-revision-date-localized-plugin = "==1.2.0"
mkdocs-material = "==9.5.38"
mkdocs-table-reader-plugin = "==3.1.0"
pymdown-extensions = "==10.10.2"
pygments = "==2.18.0"

[dev-packages]

Expand Down
14 changes: 5 additions & 9 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ed422c9

Please sign in to comment.