Skip to content

Update index.md

Update index.md #22

Workflow file for this run

name: Build and push Docs
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout actions
uses: actions/checkout@v4
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install requirement.txt
run: |
pip install -r requirements.txt
- name: Build Docs
run: |
mkdocs build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './site'
push:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true