diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-15 21:46:01 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-15 21:46:01 -0700 |
commit | 9a07667ab3fac81af136ca57d71b994186c2beba (patch) | |
tree | 16de2fc830f2d700571990842237a95e5df06dbe /.github/workflows | |
parent | 2e50e7bf25bdc782ea73a97e1cbeb5b4af5c2d53 (diff) | |
download | pandoc-9a07667ab3fac81af136ca57d71b994186c2beba.tar.gz |
GitHuB CI tweak. cabal v2-install doesn't respect --bindir?
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/haskell.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 370a9a12c..faa33d587 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -31,11 +31,11 @@ jobs: run: | export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH mkdir -p ./bin - cabal v2-install --bindir=./bin exe:pandoc + cabal v2-install exe:pandoc - uses: actions/upload-artifact@master with: name: pandoc-linux - path: ./bin/pandoc + path: $HOME/.cabal/bin/pandoc windows: |