diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-15 22:35:50 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-15 22:35:50 -0700 |
commit | 09cf70959f7603320b059790b3df8f036c14298d (patch) | |
tree | d5bf93070d48ca498def2e9faea335669c71d68f | |
parent | 9a07667ab3fac81af136ca57d71b994186c2beba (diff) | |
download | pandoc-09cf70959f7603320b059790b3df8f036c14298d.tar.gz |
GitHub CI - another attempt to install artifacts.
-rw-r--r-- | .github/workflows/haskell.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index faa33d587..7ac84138f 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -30,12 +30,12 @@ jobs: - name: Install artifact run: | export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH - mkdir -p ./bin - cabal v2-install exe:pandoc + mkdir -p ./artifacts + for f in $(find dist-newstyle -name 'pandoc*' -type f -perm +400); do cp $f ./artifacts/; done - uses: actions/upload-artifact@master with: name: pandoc-linux - path: $HOME/.cabal/bin/pandoc + path: ./artifacts/pandoc windows: |