aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-09-15 22:35:50 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-09-15 22:35:50 -0700
commit09cf70959f7603320b059790b3df8f036c14298d (patch)
treed5bf93070d48ca498def2e9faea335669c71d68f /.github
parent9a07667ab3fac81af136ca57d71b994186c2beba (diff)
downloadpandoc-09cf70959f7603320b059790b3df8f036c14298d.tar.gz
GitHub CI - another attempt to install artifacts.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/haskell.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml
index faa33d587..7ac84138f 100644
--- a/.github/workflows/haskell.yml
+++ b/.github/workflows/haskell.yml
@@ -30,12 +30,12 @@ jobs:
- name: Install artifact
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
- mkdir -p ./bin
- cabal v2-install exe:pandoc
+ mkdir -p ./artifacts
+ for f in $(find dist-newstyle -name 'pandoc*' -type f -perm +400); do cp $f ./artifacts/; done
- uses: actions/upload-artifact@master
with:
name: pandoc-linux
- path: $HOME/.cabal/bin/pandoc
+ path: ./artifacts/pandoc
windows: