Skip to content

Add devices for Home Assistant #127

Add devices for Home Assistant

Add devices for Home Assistant #127

Workflow file for this run

---
name: Create MkDocs Material Wiki
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Deploy to GitHub pages
run: mkdocs gh-deploy --force
env:
CI: true
MKDOCS_SITE_URL: https://dreknix.github.io/wiki/
MKDOCS_GIT_COMMITTERS_APIKEY: ${{ secrets.MKDOCS_GIT_COMMITTERS_APIKEY }}
...