Removed pom.xml in action

This commit is contained in:
Erik C. Thauvin 2023-08-12 14:07:55 -07:00
parent 4a5c68cdb5
commit f76cee867d

View file

@ -34,9 +34,14 @@ jobs:
- name: Run tests with bld - name: Run tests with bld
run: ./bld compile jacoco run: ./bld compile jacoco
- name: Remove pom.xml
if: success() && matrix.java-version == env.SONAR_JDK
run: rm -rf pom.xml
- name: SonarCloud Scan - name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master uses: sonarsource/sonarcloud-github-action@master
if: success() && matrix.java-version == env.SONAR_JDK if: success() && matrix.java-version == env.SONAR_JDK
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}