Skip to content

Merge pull request #128 from nramc/27-add-notes-about-passkeys---weba… #113

Merge pull request #128 from nramc/27-add-notes-about-passkeys---weba…

Merge pull request #128 from nramc/27-add-notes-about-passkeys---weba… #113

Workflow file for this run

name: Deploy MkDocs
on:
push:
branches:
- main # or the branch you want to deploy
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build MkDocs site
run: |
mkdocs build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }}
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.DEPLOY_TOKEN }}
publish_dir: ./site