Skip to content

docs: deploy to phomo/ folder #58

docs: deploy to phomo/ folder

docs: deploy to phomo/ folder #58

Workflow file for this run

name: docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- 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
with:
python-version: 3.12
- 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-
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install doc dependencies
run: poetry install --with docs
- name: Build docs
run: poetry run mkdocs build
- name: Clone gh-pages branch
run: |
git clone --branch gh-pages https://github.com/${{ github.repository }} gh-pages
cd gh-pages
- name: Deploy docs to /phomo
run: |
cd gh-pages
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
mkdir -p phomo
rm -rf phomo/* # Clear old files
cp -r ../site/* phomo/
git add phomo
git commit -m "Deploy docs to /phomo"
git push origin gh-pages