diff options
| author | John MacFarlane <[email protected]> | 2022-10-04 14:19:12 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2022-10-04 14:19:12 -0700 |
| commit | 875747f351a4df9238ac1e374f5eb3b722505f4d (patch) | |
| tree | 8656b94e0b9c2560a313e47c69f97d0d0faa1a06 /.github/workflows/release-candidate.yml | |
| parent | ee62618a8030e005542f9a1e1ac269f692fca484 (diff) | |
Fix rc build for Windows.
Diffstat (limited to '.github/workflows/release-candidate.yml')
| -rw-r--r-- | .github/workflows/release-candidate.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index 9ec8845a5..54e5024f7 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -34,7 +34,7 @@ jobs: versions: - osarch: "windows-x86_64" arch: "x64" - stack_opts: '-j4 +RTS -A256m -RTS' + stack_opts: '-j4 +RTS -A256m -RTS --flag pandoc:embed_data_files --flag pandoc-cli:lua --flag pandoc-cli:server' steps: - uses: actions/checkout@v3 @@ -46,7 +46,7 @@ jobs: shell: cmd run: | for /f %%a in ('powershell -Command "Get-Date -format yyyy-MM-dd"') do set THEDATE=%%a - stack build ${{ matrix.versions.stack_opts }} pandoc + stack build ${{ matrix.versions.stack_opts }} pandoc-cli for /f "tokens=1-2 delims= " %%a in ('stack exec pandoc -- --version') do ( @set VERSION=%%b goto :next |
