GitHub CI: fix finding of executables.

This commit is contained in:
John MacFarlane 2019-09-16 08:12:54 -07:00
parent 09cf70959f
commit 4fe6bd4759

View file

@ -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