]> git.immae.eu Git - github/fretlink/hmacaroons.git/blame - scripts/pushdoc.sh
Fix typo in secure var
[github/fretlink/hmacaroons.git] / scripts / pushdoc.sh
CommitLineData
6f7c6d5a
JT
1#!/bin/bash
2set -e # exit with nonzero exit code if anything fails
3
4cabal haddock
5
6pushd dist/doc/html/hmacaroons
7git init
8
9# inside this git repo we'll pretend to be a new user
10git config user.name "Travis CI"
11git config user.email "julien.tanguy@jhome.fr"
12
13# The first and only commit to this new Git repo contains all the
14# files present with the commit message "Deploy to GitHub Pages".
15git add .
16git commit -m "Deploy to GitHub Pages"
17
18# Force push from the current repo's master branch to the remote
19# repo's gh-pages branch. (All previous history on the gh-pages branch
20# will be lost, since we are overwriting it.) We redirect any output to
21# /dev/null to hide any sensitive credential data that might otherwise be exposed.
15b8a37d 22echo "Pushing haddock to gh-pages"
6f7c6d5a
JT
23git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" master:gh-pages > /dev/null 2>&1
24
25popd