added mkdocs #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Github workflow runner instructions using cutomized actions | |
name: Deploy Pages | |
on: [ push ] | |
jobs: | |
documents: | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [ '3.11' ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip build | |
python -m pip install -r requirements/docs.txt | |
- name: Deploy documents | |
run: | | |
git config user.name ${{ github.repository_owner }} | |
git config user.email "${{ secrets.GH_EMAIL }}" | |
git remote add gh-token "https://${{ secrets.PAT }}@github.com/ibrahimroshdy/continuous_integration.git" | |
git fetch gh-token && git fetch gh-token gh-pages:gh-pages | |
python -m mkdocs gh-deploy -v --clean --remote-name gh-token | |
git push gh-token gh-pages |