-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AAE-28943] move uploading coverage inside the build
- Loading branch information
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,9 +58,11 @@ runs: | |
using: composite | ||
steps: | ||
- name: Load JaCoCo report on SonarCloud | ||
env: | ||
SONAR_TOKEN: ${{ inputs.sonar_token }} | ||
shell: bash | ||
run: | | ||
mvn sonar:sonar -Dsonar.token=${{ inputs.sonar_token }} -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=alfresco -Dsonar.projectKey=Alfresco_hxp-studio-services | ||
mvn sonar:sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=alfresco -Dsonar.projectKey=Alfresco_hxp-studio-services | ||
# - name: SonarCloud Scan | ||
# uses: sonarsource/[email protected] | ||
|