Skip to content

chore: Include md files in Linguist indexing (#20) #29

chore: Include md files in Linguist indexing (#20)

chore: Include md files in Linguist indexing (#20) #29

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.14.2
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Requirements
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Zensical Build
run: zensical build --clean
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v4
with:
path: site
- uses: actions/deploy-pages@v4
id: deployment