From 20fac2e82068318f15d766dfc332a35c48e90905 Mon Sep 17 00:00:00 2001 From: Arslan Date: Tue, 3 Dec 2024 13:48:56 +0500 Subject: [PATCH] fix: move from nightly to main branch --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df614d9a..da6dc92a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: if [[ "${{ matrix.edx_branch }}" == "open-release/quince.master" ]]; then pip install tutor==17.0.6 elif [[ "${{ matrix.edx_branch }}" == "master" ]]; then - git clone --branch=nightly https://github.com/overhangio/tutor.git + git clone --branch=main https://github.com/overhangio/tutor.git pip install -e "./tutor" else pip install tutor==18.0.0 @@ -54,8 +54,8 @@ jobs: - name: Run tests on tutor run: | if [[ "${{ matrix.edx_branch }}" == "master" ]]; then - DIRECTORY="tutor-nightly" - DEV="tutor_nightly_dev" + DIRECTORY="tutor-main" + DEV="tutor_main_dev" else DIRECTORY="tutor" DEV="tutor_dev"