Skip to content

ci: add username to repository name #11

ci: add username to repository name

ci: add username to repository name #11

Workflow file for this run

name: docs_pages_workflow
# execute this workflow automatically when a we push to master
on:
workflow_call:
workflow_dispatch:
push:
branches: [ main ]
jobs:
build_docs_job:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install -U sphinx
python -m pip install sphinx-rtd-theme
# python -m pip install sphinxcontrib-apidoc
python -m pip install sphinx-autoapi
python -m pip install myst_parser
python -m pip install furo
- name: make the sphinx docs
run: |
make -C docs clean
# sphinx-apidoc -f -o docs/source . -H Test -e -t docs/source/_templates
make -C docs html
- name: Init new repo in dist folder and commit generated files
run: |
cd docs/build/html/
git init
touch .nojekyll
git add -A
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git config --system --add safe.directory /github/workspace/docs/build/html
git commit -m 'deploy'
- name: Force push to destination branch
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository: kennylajara/wml-docs
branch: served
force: true
directory: ./docs/build/html