Skip to content

minor fixes

minor fixes #14

Workflow file for this run

name: Deploy Pages
on:
push:
branches:
- main # Trigger the workflow only on pushes to the main branch
jobs:
documents:
strategy:
max-parallel: 4
matrix:
python-version: [ '3.11' ]
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
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.txt
- name: Set up Git
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/multi-arch-github-actions.git"
git fetch gh-token
git checkout main # Ensure you are on the 'main' branch
git pull origin main
- name: Fetch gh-pages branch
run: git fetch gh-token gh-pages:gh-pages
- name: Deploy documents
run: python -m mkdocs gh-deploy -v --clean --remote-name gh-token
- name: Push changes to gh-pages branch
run: git push gh-token gh-pages