Skip to content

Commit

Permalink
ci: fix invalid string
Browse files Browse the repository at this point in the history
  • Loading branch information
8954sood committed Aug 30, 2024
1 parent f7199f4 commit 6008365
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:
run: chmod +x gradlew

- name: Run Student spotless
if: startsWith($TITLE}, '[Student]')
if: startsWith($TITLE, '[Student]')
run: ./gradlew dodam-student:spotlessCheck

- name: Android Student Build with Gradle
if: startsWith($TITLE}, '[Student]')
if: startsWith($TITLE, '[Student]')
run: ./gradlew dodam-student:clean assembleRelease --parallel

- name: Run Teacher spotless
if: startsWith($TITLE}, '[Teacher]')
if: startsWith($TITLE, '[Teacher]')
run: ./gradlew dodam-teacher-android:spotlessCheck

- name: Android Teacher Build with Gradle
if: startsWith($TITLE}, '[Teacher]')
if: startsWith($TITLE, '[Teacher]')
run: ./gradlew dodam-teacher-android:clean assembleRelease --parallel


Expand Down

0 comments on commit 6008365

Please sign in to comment.