Skip to content

Update prompt-design.md #221

Update prompt-design.md

Update prompt-design.md #221

name: Publish AI Cookbook
on:
push:
branches:
- main
paths:
- "AI_CookBook/**"
- ".github/workflows/publish-cookbook.yml"
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install mkdocs mkdocs-material mkdocs-glightbox pymdown-extensions
- name: Deploy with MkDocs
working-directory: AI_CookBook
run: mkdocs gh-deploy --force