From 6dfe63eb27127dd310eec752055e93d3e29c304d Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 9 Sep 2021 19:51:01 +0200 Subject: [PATCH] show changes --- .github/workflows/publish.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c39bdcb..3d65474 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,6 +36,10 @@ jobs: with: repository: mdref/mdref-raphf path: refs/raphf + - uses: actions/checkout@v2 + with: + repository: mdref/mdref.github.io + path: html - name: Install dependencies run: | sudo apt-get update -y @@ -65,7 +69,7 @@ jobs: composer install - name: Generate HTML run: | - mkdir html + mkdir -p html cd html ../bin/ref2html . ../refs/* - name: Generate STUBs @@ -74,6 +78,10 @@ jobs: for ext in http pq; do ../bin/ref2stub ../refs/$ext done + - name: Show changes + run: | + cd html + git diff - uses: crazy-max/ghaction-github-pages@v2 if: success() env: -- 2.30.2