From: Jérémie Astor Date: Sat, 22 Feb 2020 01:28:34 +0000 (+0100) Subject: :wrench: trigger X-Git-Tag: nightly~1762 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=00e139f10e371e3bbd7b276c5581c7c0603aa9fe;p=gwion.git :wrench: trigger --- 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