From 4fe6bd47596b0d0da2647d24e8482ff89ee2ac85 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 16 Sep 2019 08:12:54 -0700 Subject: GitHub CI: fix finding of executables. --- .github/workflows/haskell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') 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 -- cgit v1.2.3