Skip to content

Commit

Permalink
github test2
Browse files Browse the repository at this point in the history
  • Loading branch information
Divya Sankar authored and Divya Sankar committed Jan 27, 2025
1 parent 3b44af7 commit 203ff91
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
31 changes: 13 additions & 18 deletions .github/workflows/mkdocs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,17 @@ jobs:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: pip install mkdocs-autorefs
- run: pip install mkdocs-get-deps
- run: pip install mkdocs-material-extensions
- run: pip install mkdocstrings
- run: pip install mkdocstrings-python
- run: mkdocs gh-deploy --force --verbose
python-version: "3.11"
- name: Install Dependencies
run: pip install mkdocs-material mkdocs-autorefs mkdocs-get-deps mkdocs-material-extensions mkdocstrings mkdocstrings-python
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
# Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_FILE: mkdocs.yaml
4 changes: 4 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ jobs:

- name: Publish package distributions to PyPI
run: poetry publish --username $PYPI_USERNAME --password $PYPI_PASSWORD

- name: Publish documentation
run: pip install mkdocs-material
run: mkdocs gh-deploy --force

0 comments on commit 203ff91

Please sign in to comment.