summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent René de Cotret <l.rdc@socivolta.com>2023-01-20 07:35:50 -0500
committerLaurent René de Cotret <l.rdc@socivolta.com>2023-01-20 07:35:50 -0500
commitb08e186b91c55968edd7fd836c01602ad95757cd (patch)
treef81bf735a35ec631ad16c29955dd2678efffa9be
parent2881885a25d66bca5d99d1aa6e6718b9ef9ea56b (diff)
CI: Install pandoc 3 correctly from the pandoc-cli package1.6.0
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/gh-pages.yml2
-rw-r--r--tools/mkmanual.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 57996b5..298abee 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -156,7 +156,7 @@ jobs:
# Integration tests sometimes hang on MacOS
if: matrix.os == 'ubuntu-latest'
run: |
- cabal install pandoc
+ cabal install pandoc-cli
cabal install exe:pandoc-plot
pandoc --filter pandoc-plot -i tests/integration.md -t html
diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml
index 368eaaa..b0c3df8 100644
--- a/.github/workflows/gh-pages.yml
+++ b/.github/workflows/gh-pages.yml
@@ -57,7 +57,7 @@ jobs:
- name: Install pandoc-plot and other dependencies
run: |
- cabal install pandoc
+ cabal install pandoc-cli
cabal install exe:pandoc-plot
- name: Install Python dependencies
diff --git a/tools/mkmanual.sh b/tools/mkmanual.sh
index fa8d6a3..a780c2c 100644
--- a/tools/mkmanual.sh
+++ b/tools/mkmanual.sh
@@ -1,7 +1,7 @@
echo "Making the pandoc-plot manual"
cabal install exe:pandoc-plot --overwrite-policy=always
-cabal install pandoc --overwrite-policy=always
+cabal install pandoc-cli --overwrite-policy=always
declare version="$(pandoc-plot --version)"
pandoc-plot --help > help.txt