Sha256: f6cab4344f2ce44322e0ab3c50d77903b334609088a1937f172b81c984c78605
Contents?: true
Size: 437 Bytes
Versions: 5
Compression:
Stored size: 437 Bytes
Contents
#!/bin/bash set -o errexit -o nounset rev=$(git rev-parse --short HEAD) cd website/_site git init git config user.name "Nicholas E. Rabenau" git config user.email "nerab@gmx.at" git remote add upstream "https://$GH_TOKEN@github.com/nerab/dropcaster.git" git fetch upstream git reset upstream/gh-pages # echo "dropcaster.net" > CNAME touch . git add -A . git commit -m "rebuild pages at ${rev}" git push -q upstream HEAD:gh-pages
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
dropcaster-1.2.0 | website/deploy.sh |
dropcaster-1.1.0 | website/deploy.sh |
dropcaster-1.0.0 | website/deploy.sh |
dropcaster-0.0.8 | website/deploy.sh |
dropcaster-0.0.7 | website/deploy.sh |