From 9afe272a4c591acf119a699d05b434bc27f4c650 Mon Sep 17 00:00:00 2001 From: wellbeing-dough Date: Sat, 20 Jan 2024 18:52:01 +0900 Subject: [PATCH] =?UTF-8?q?[Feat]=20:=20=EC=BB=A4=EB=B2=84=EB=A6=AC?= =?UTF-8?q?=EC=A7=80=20=EA=B2=B0=EA=B3=BC=20=EC=A0=95=EC=A0=81=20=EC=82=AC?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8=EC=97=90=20=EA=B2=8C=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 962eb981..fbffb6d3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -47,12 +47,16 @@ jobs: id: buildAndTests continue-on-error: true # 테스트에 실패해도 계속 로그찍기 - - name: Upload Jacoco Report - uses: actions/upload-artifact@v3 +# - name: Upload Jacoco Report +# uses: actions/upload-artifact@v3 +# with: +# name: jacoco-report +# path: build/reports/jacoco/test/jacocoTestReport.xml + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 with: - name: jacoco-report - path: build/reports/jacoco/test/jacocoTestReport.xml - + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./build/reports/jacoco/test/html/index.html - name: Archive test results if tests failed # 테스트가 실패하면 결과 아카이빙 if: steps.buildAndTests.outcome == 'failure'