diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index badb4ec6..5eaca867 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -60,12 +60,6 @@ jobs: # minimum_coverage: 20 # fail_below_threshold: false # publish_only_summary: false - # 테스트 후 Result를 보기위해 Publish Unit Test Results step 추가 - - name: Publish Unit Test Results - uses: EnricoMi/publish-unit-test-result-action@v1 - if: ${{ always() }} # 테스트가 실패하여도 Report를 보기 위해 `always`로 설정 - with: - files: build/test-results/**/*.xml - name: Archive test results if tests failed # 테스트가 실패하면 결과 아카이빙 if: steps.buildAndTests.outcome == 'failure' @@ -73,7 +67,7 @@ jobs: with: name: test-results path: | - **/build/reports/tests/test/ + **/build - name: Stop workflow if tests failed # 테스트가 실패하면 테스트 실패 로그 아카이빙 후 전체 플로우 종료 if: steps.buildAndTests.outcome == 'failure'