diff --git a/.github/workflows/publish-book.yaml b/.github/workflows/publish-book.yaml index 557bea16..0f8ae7fe 100644 --- a/.github/workflows/publish-book.yaml +++ b/.github/workflows/publish-book.yaml @@ -8,6 +8,9 @@ env: NB_KERNEL: python NMA_REPO: instructor-course-content NMA_MAIN_BRANCH: main + PREREQ_INTRO: ComputationalNeuroscience + + ORG: neuromatch # This job installs dependencies, build the book, and pushes it to `gh-pages` jobs: @@ -35,7 +38,7 @@ jobs: - name: Install CI tools run: | BRANCH=`python -c 'import os, re; m = re.search(r"nmaci:([\w-]+)", os.environ["COMMIT_MESSAGE"]); print("main" if m is None else m.group(1))'` - wget https://github.com/NeuromatchAcademy/nmaci/archive/refs/heads/$BRANCH.tar.gz + wget https://github.com/neuromatch/nmaci/archive/refs/heads/$BRANCH.tar.gz tar -xzf $BRANCH.tar.gz pip install --upgrade pip pip install -r nmaci-$BRANCH/requirements.txt