Skip to content

update tomoteam link #34

update tomoteam link

update tomoteam link #34

Workflow file for this run

name: Build and Preprocess
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: pip install requests
- name: Preprocess All Markdown Files
run: python scripts/fetch_code.py
- name: Commit and Push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git add .
git commit -m "Automated code embedding in all markdown files"
git push
continue-on-error: true