From 0256702edecd9eb8f24a70720f0a363f6f411127 Mon Sep 17 00:00:00 2001 From: Manuel Bl Date: Sat, 1 Jun 2024 11:13:25 +0200 Subject: [PATCH] Fix gradle example --- .github/workflows/continuous-integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 018f796..2888950 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -48,12 +48,12 @@ jobs: working-directory: ./generator run: ./gradlew jacocoTestReport sonar -Dsonar.token=$SONAR_TOKEN - name: Example "maven_example" - run: ./build_and_run.sh - working-directory: ./examples/maven_example - - name: Example "gradle_example" run: | mvn $MAVEN_ARGS package mvn $MAVEN_ARGS exec:exec + working-directory: ./examples/maven_example + - name: Example "gradle_example" + run: ./build_and_run.sh working-directory: ./examples/gradle_example - name: Example "kotlin_example" run: ./build_and_run.sh