Skip to content

Commit

Permalink
Attempt to fix windows release build
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Jul 18, 2023
1 parent b2f3da9 commit f75bec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cabal build ${{ matrix.versions.cabal_opts }} pandoc-cli
for /f "delims=" %%a in ('cabal list-bin ${{ matrix.versions.cabal_opts }} pandoc-cli') do set BINPATH=%%a
echo BINPATH is %BINPATH%
for /f "tokens=1-2 delims= " %%a in ("%BINPATH% --version") do (
for /f "tokens=1-2 delims= " %%a in ('cabal run ${{ matrix.versions.cabal_opts }} pandoc-cli -- --version') do (
@set VERSION=%%b
goto :next
)
Expand Down

0 comments on commit f75bec5

Please sign in to comment.