diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-09-15 18:20:26 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-09-15 18:20:26 -0700 |
commit | 4140ad1ac9483255586521a4b04fe08dbb1275c7 (patch) | |
tree | bcc1a856ad7b378cf8516252d4049fd89f7116dd | |
parent | b023bfccf4599340fdb9645b013d2ac1c60fc558 (diff) | |
download | pandoc-4140ad1ac9483255586521a4b04fe08dbb1275c7.tar.gz |
GitHub CI: attempt to enable artifact.
-rw-r--r-- | .github/workflows/haskell.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index d2ee6bfd7..68a8df02c 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -27,6 +27,15 @@ jobs: run: | export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH cabal v2-test + - name: Install artifact + run: | + export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH + mkdir -p ./bin + cabal v2-install --bindir=./bin + - uses: actions/upload-artifact@master + with: + name: pandoc-linux + path: ./bin/pandoc windows: |