Skip to content

Merge pull request #299 from aycabas/main #154

Merge pull request #299 from aycabas/main

Merge pull request #299 from aycabas/main #154

Workflow file for this run

name: ci
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3 # Updated to the latest version
- uses: actions/setup-python@v4 # Updated to the latest version
with:
python-version: '3.x'
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}