From 958c3cf1127f70f2c1c898c87a2e766be98c1377 Mon Sep 17 00:00:00 2001 From: catchSheep <81134674+catchSheep@users.noreply.github.com> Date: Fri, 5 Jul 2024 12:32:49 +0800 Subject: [PATCH] basic colab generation workflow --- .github/workflows/notebook_colab_gen.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/notebook_colab_gen.yml diff --git a/.github/workflows/notebook_colab_gen.yml b/.github/workflows/notebook_colab_gen.yml new file mode 100644 index 0000000..aef0914 --- /dev/null +++ b/.github/workflows/notebook_colab_gen.yml @@ -0,0 +1,13 @@ +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/colab_nb_builder.py --directory notebooks + - run: echo "Job status is ${{ job.status }}"