Refactor how we push to main from Action (#411) #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Add Notebook Examples to Docs | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'examples/**' | |
- 'docs/v1/examples/**' | |
- '.github/workflows/add-notebook-examples-to-docs.yml' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
add-notebook-examples-to-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
pip install jupyter nbconvert | |
- name: Convert notebooks to markdown and add to docs | |
run: | | |
set -x # Enable debug mode | |
for file in docs/v1/examples/*.mdx; do | |
echo "Processing file: $file" | |
source_file=$(grep -oP '(?<=\{/\* SOURCE_FILE: ).*(?= \*/\})' "$file" || true) | |
if [[ -z "$source_file" ]]; then | |
continue | |
fi | |
echo "Source file: $source_file" | |
if [[ -f "$source_file" ]]; then | |
echo "Converting notebook to markdown" | |
jupyter nbconvert --to markdown "$source_file" || { echo "Error: Failed to convert $source_file" >&2; continue; } | |
markdown_file="${source_file%.ipynb}.md" | |
echo "Removing existing content after {/* SOURCE_FILE: ... */}" | |
sed -i '\#{/\* SOURCE_FILE:#,$d' "$file" | |
echo "Appending markdown to $file" | |
echo -e "\n{/* SOURCE_FILE: $source_file */}\n" >> "$file" | |
cat "$markdown_file" >> "$file" || { echo "Error: Failed to append markdown to $file" >&2; continue; } | |
rm "$markdown_file" || { echo "Error: Failed to remove $markdown_file" >&2; continue; } | |
else | |
echo "Error: Source file not found: $source_file" >&2 | |
fi | |
done | |
- name: Add, commit, and push changes | |
run: | | |
git config --global user.name 'Howard Gil' | |
git config --global user.email 'HowieG@users.noreply.github.com' | |
git add docs/v1/examples/*.mdx | |
if git diff --staged --quiet; then | |
echo "No changes to commit" | |
else | |
git commit -m "GitHub Action: Update examples in docs from notebooks" | |
git push | |
fi |