From a903c828b73e6d7619fe2d9359181c6b35a706f0 Mon Sep 17 00:00:00 2001 From: Jessica Mitchell Date: Fri, 13 Sep 2024 22:38:05 +0200 Subject: [PATCH] fix things --- .github/workflows/setup_notebooks.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/setup_notebooks.yml b/.github/workflows/setup_notebooks.yml index fc0b4e1..093c536 100644 --- a/.github/workflows/setup_notebooks.yml +++ b/.github/workflows/setup_notebooks.yml @@ -56,13 +56,14 @@ jobs: rc_number=1 # Adjust if needed BRANCH_NAME="v${NEST_VERSION}_rc${rc_number}" echo "Branch name is: $BRANCH_NAME" - echo "##[set-output name=branch;]$BRANCH_NAME" + echo "branch=$BRANCH_NAME" >> $GITHUB_OUTPUT - name: Checkout nest-simualtor repo uses: actions/checkout@v4 with: repository: jessica-mitchell/nest-simulator - ref: ${{ steps.version_tag.outputs.branch }} # Use the dynamically created branch + ref: refs/heads/jupytext + #ref: ${{ steps.version_tag.outputs.branch }} # Use the dynamically created branch token: ${{ secrets.API_TOKEN_GITHUB }} path: nest-simulator # Directory to place the repository in