Skip to content

catchSheep is building colab notebooks from regular notebooks #3

catchSheep is building colab notebooks from regular notebooks

catchSheep is building colab notebooks from regular notebooks #3

name: Build google colab notebooks
run-name: ${{ github.actor }} is building colab notebooks from regular notebooks
on: [push]
jobs:
add_nbs:
runs-on: ubuntu-latest
steps:
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
- name: Check out the repository to the runner
uses: actions/checkout@v4
- name: Run the colab build script
run: python build_scripts/colab_nb_builder.py --directory notebooks
- run: echo "Job status is ${{ job.status }}"
- name: check for changes
run: git status
- name: stage changed files
run: git add .
- name: commit changed files
run: git commit -m "Auto updating TODO.txt"
- name: fetch
run: git fetch
- name: push code
run: git push