File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on : [push]
3+ jobs :
4+ tests :
5+ strategy :
6+ matrix :
7+ os : [macos-latest, ubuntu-latest]
8+ runs-on : ${{ matrix.os }}
9+ steps :
10+ - uses : actions/checkout@v1
11+ - uses : cachix/install-nix-action@v6
12+ - uses : cachix/cachix-action@v3
13+ with :
14+ name : earnestresearch-public
15+ signingKey : ' ${{ secrets.EARNESTRESEARCH_PUBLIC_CACHIX_SIGNING_KEY }}'
16+ file : ci.nix
Original file line number Diff line number Diff line change 1+ with ( import ./. { } ) ;
2+ kubernetes-webhook-haskell . components . library
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ set -e
3+
4+ dir=$( mktemp -d dist-docs.XXXXXX)
5+ trap ' rm -r "$dir"' EXIT
6+
7+ # assumes cabal 2.4 or later
8+ cabal v2-haddock --builddir=" $dir " --haddock-for-hackage --enable-doc
9+
10+ cabal upload -d --publish $dir /* -docs.tar.gz
You can’t perform that action at this time.
0 commit comments