diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-19 23:30:15 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-19 23:30:15 -0700 |
commit | 3b457da6dca9c68026e2ac43d18f3cf0d66ac587 (patch) | |
tree | 923b7a7c7128cf7daf5457ea4eaa25dccd51a231 | |
parent | f7183e57fba725a3ad330324ae95c6c337c0b8ce (diff) | |
download | pandoc-3b457da6dca9c68026e2ac43d18f3cf0d66ac587.tar.gz |
Nightly - windows diagnostics.
-rw-r--r-- | .github/workflows/nightly.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index eb4270c2c..4b3cf0ff7 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -2,7 +2,7 @@ name: Nightly on: schedule: - - cron: '21 4 * * *' + - cron: '21 */6 * * *' jobs: linux: @@ -61,7 +61,9 @@ jobs: set SUFFIX=nightly-%THEDATE% set ARTIFACTS=nightly-windows mkdir %ARTIFACTS% + stack path stack build pandoc pandoc-citeproc + forfiles /P .\.stack-work\install /M pandoc*.exe /S /C "cmd /C echo @path %ARTIFACTS%" forfiles /P .\.stack-work\install /M pandoc*.exe /S /C "cmd /C copy @path %ARTIFACTS%" copy COPYRIGHT %ARTIFACTS% ren %ARTIFACTS%\pandoc pandoc-%SUFFIX% |