Revert "Nightly builds: ensure that data files are baked in."
This reverts commit a2818e97eb
.
This commit is contained in:
parent
a2818e97eb
commit
98034e8673
1 changed files with 2 additions and 2 deletions
4
.github/workflows/nightly.yml
vendored
4
.github/workflows/nightly.yml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
||||||
for /f %%a in ('powershell -Command "Get-Date -format yyyy-MM-dd"') do set THEDATE=%%a
|
for /f %%a in ('powershell -Command "Get-Date -format yyyy-MM-dd"') do set THEDATE=%%a
|
||||||
set ARTIFACTS=%CD%\nightly-windows\pandoc-nightly-windows-%THEDATE%
|
set ARTIFACTS=%CD%\nightly-windows\pandoc-nightly-windows-%THEDATE%
|
||||||
mkdir %ARTIFACTS%
|
mkdir %ARTIFACTS%
|
||||||
stack build --flag pandoc:nightly --flag pandoc:embed_data_files pandoc
|
stack build --flag pandoc:nightly pandoc
|
||||||
forfiles /P .\.stack-work\install /M pandoc*.exe /S /C "cmd /C copy @path %%ARTIFACTS%%"
|
forfiles /P .\.stack-work\install /M pandoc*.exe /S /C "cmd /C copy @path %%ARTIFACTS%%"
|
||||||
copy COPYRIGHT %ARTIFACTS%
|
copy COPYRIGHT %ARTIFACTS%
|
||||||
ren %ARTIFACTS%\COPYRIGHT COPYRIGHT.txt
|
ren %ARTIFACTS%\COPYRIGHT COPYRIGHT.txt
|
||||||
|
@ -82,7 +82,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
export ARTIFACTS=nightly-macos/pandoc-nightly-macos-$(date +%Y-%m-%d)
|
export ARTIFACTS=nightly-macos/pandoc-nightly-macos-$(date +%Y-%m-%d)
|
||||||
mkdir -p ${ARTIFACTS}
|
mkdir -p ${ARTIFACTS}
|
||||||
stack build --flag pandoc:nightly --flag pandoc:embed_data_files pandoc
|
stack build --flag pandoc:nightly pandoc
|
||||||
for f in $(find .stack-work/install -name 'pandoc*' -perm +001 -type f); do cp $f ${ARTIFACTS}/; done
|
for f in $(find .stack-work/install -name 'pandoc*' -perm +001 -type f); do cp $f ${ARTIFACTS}/; done
|
||||||
mv ${ARTIFACTS}/pandoc ${ARTIFACTS}/pandoc
|
mv ${ARTIFACTS}/pandoc ${ARTIFACTS}/pandoc
|
||||||
cp COPYRIGHT ${ARTIFACTS}/
|
cp COPYRIGHT ${ARTIFACTS}/
|
||||||
|
|
Loading…
Reference in a new issue