diff options
-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 |