Skip to content

Commit

Permalink
chore: add upload problems report as artifact step
Browse files Browse the repository at this point in the history
  • Loading branch information
Ji-soo708 committed Dec 29, 2024
1 parent 296513d commit cb802ad
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew build sonar --info

- name: Upload problems report as artifact
if: success() # 성공적으로 빌드된 경우에만 실행
uses: actions/upload-artifact@v3
with:
name: sonar-problems-report
path: build/reports/problems/problems-report.html

0 comments on commit cb802ad

Please sign in to comment.