diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-16 08:12:54 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-16 08:12:54 -0700 |
commit | 4fe6bd47596b0d0da2647d24e8482ff89ee2ac85 (patch) | |
tree | 9c800863f2ba2acee32fde27cfdb108b461de029 | |
parent | 09cf70959f7603320b059790b3df8f036c14298d (diff) | |
download | pandoc-4fe6bd47596b0d0da2647d24e8482ff89ee2ac85.tar.gz |
GitHub CI: fix finding of executables.
-rw-r--r-- | .github/workflows/haskell.yml | 2 |
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 |