From 52426af6bff24e0237160453f375c257faae95ae Mon Sep 17 00:00:00 2001 From: Dave Wilson <32313507+dawilson9@users.noreply.github.com> Date: Sat, 9 Mar 2024 09:37:49 -0600 Subject: [PATCH] Update ci.yml - build CompetitionSoftware project Previous version built a project called BasicDrive from the root directory of the repo but we've reorganized and now need to build CompetitionSoftware instead. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10c13cc..28e6981 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,5 +29,5 @@ jobs: uses: actions/checkout@v3 - name: Gradle Build run: | - chmod +x ./BasicDrive/gradlew - cd BasicDrive && ./gradlew build + chmod +x ./CompetitionSoftware/gradlew + cd CompetitionSoftware && ./gradlew build