aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-09-16 08:12:54 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-09-16 08:12:54 -0700
commit4fe6bd47596b0d0da2647d24e8482ff89ee2ac85 (patch)
tree9c800863f2ba2acee32fde27cfdb108b461de029 /.github
parent09cf70959f7603320b059790b3df8f036c14298d (diff)
downloadpandoc-4fe6bd47596b0d0da2647d24e8482ff89ee2ac85.tar.gz
GitHub CI: fix finding of executables.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/haskell.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml
index 7ac84138f..0726d86fd 100644
--- a/.github/workflows/haskell.yml
+++ b/.github/workflows/haskell.yml
@@ -31,7 +31,7 @@ jobs:
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
mkdir -p ./artifacts
- for f in $(find dist-newstyle -name 'pandoc*' -type f -perm +400); do cp $f ./artifacts/; done
+ for f in $(find dist-newstyle -name 'pandoc*' -type f -executable); do cp $f ./artifacts/; done
- uses: actions/upload-artifact@master
with:
name: pandoc-linux