We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 296513d commit cb802adCopy full SHA for cb802ad
.github/workflows/ci-backend.yml
@@ -45,3 +45,10 @@ jobs:
45
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
47
run: ./gradlew build sonar --info
48
+
49
+ - name: Upload problems report as artifact
50
+ if: success() # 성공적으로 빌드된 경우에만 실행
51
+ uses: actions/upload-artifact@v3
52
+ with:
53
+ name: sonar-problems-report
54
+ path: build/reports/problems/problems-report.html
0 commit comments