diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7c10f1ff..cffc68bb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -62,13 +62,12 @@ jobs: # publish_only_summary: false - - name: Archive test results if tests failed # 테스트가 실패하면 결과 아카이빙 - if: steps.buildAndTests.outcome == 'failure' + - name: Archive test results if tests failed # 테스트가 결과 아카이빙 uses: actions/upload-artifact@v2 with: name: test-results path: | - ./build/reports/tests/test/ + **/build/reports/tests/test/ - name: Stop workflow if tests failed # 테스트가 실패하면 테스트 실패 로그 아카이빙 후 전체 플로우 종료 if: steps.buildAndTests.outcome == 'failure'