Skip to content

Removed breadmaker.py && heading_to_breadcrumb_mapping.json #8

Removed breadmaker.py && heading_to_breadcrumb_mapping.json

Removed breadmaker.py && heading_to_breadcrumb_mapping.json #8

Workflow file for this run

name: Nuclia Sync
on: [push]
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install requirements
run: |
pip install -q -r requirements.txt
- name: Run Nuclia Sync
env:
DEPLOY_NUCLIA_URL: ${{secrets.DEPLOY_NUCLIA_URL}}
DEPLOY_NUCLIA_TOKEN: ${{secrets.DEPLOY_NUCLIA_TOKEN}}
run: |
python3 upload.py
- name: Run Breadcrumb Json maker
run: |
python3 breadmaker.py
- name: Commit changes
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
git add .
git commit -m "Nuclia Sync: Updated docs"
git push