Skip to content

added new cleaned meta file with meaningful columns #13

added new cleaned meta file with meaningful columns

added new cleaned meta file with meaningful columns #13

Workflow file for this run

name: Deploy MkDocs Documentation
on:
push:
branches:
- main
paths:
- 'docs/**'
- 'mkdocs.yml'
workflow_dispatch: # Manual trigger
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material
- name: Build MkDocs site
run: mkdocs build --clean
- name: Upload artifact for deployment
uses: actions/upload-pages-artifact@v3
with:
path: ./site
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
- name: Report deployment
run: |
echo "📦 Documentation deployed!"
echo "🔗 URL: ${{ steps.deployment.outputs.page_url }}"