From 00e139f10e371e3bbd7b276c5581c7c0603aa9fe Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Sat, 22 Feb 2020 02:28:34 +0100 Subject: [PATCH] :wrench: trigger --- .github/workflows/coverage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 552cc26d..f1322e76 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -67,13 +67,13 @@ jobs: - name: Make html mail uses: docker://pandoc/core:2.9 with: - args: "--from gfm --to html -o mail.html gwion-coverage-report/diff.md -o mail.html" + args: "--from gfm --to html -o diff.html gwion-coverage-report/diff.md" - name: Push Report if: github.event_name == 'push' run: | branch=$(basename ${{ github.event.ref }}) - cp mail.html gwion-coverage-report/html/$branch + cp diff.html gwion-coverage-report/html/$branch cd gwion-coverage-report git config --local user.email "action@github.com" git config --local user.name "GitHub Action" @@ -96,7 +96,7 @@ jobs: username: ${{ secrets.MAIL_USERNAME }} password: ${{ secrets.MAIL_PASSWORD }} subject: Github Actions job result - body: file://mail.html + body: file://diff.html to: ${{ github.event.repository.owner.email }},${{ github.event.pusher.email }} from: Gwion Coverage action content_type: text/html -- 2.43.0