Skip to content

Commit cb802ad

Browse files
committed
chore: add upload problems report as artifact step
1 parent 296513d commit cb802ad

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci-backend.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,10 @@ jobs:
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4747
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

Comments
 (0)