[go: up one dir, main page]

xkbcommon-dl 0.1.0

Dynamically loaded xkbcommon and xkbcommon-x11 Rust bindings.
Documentation
#!/bin/bash

set -o errexit -o nounset

: ${TRAVIS:?"This should only be run on Travis CI."}

rev=$(git rev-parse --short HEAD)

git init
git config user.name "Francesca Frangipane"
git config user.email "francesca@comfysoft.net"

git remote add upstream "https://$GH_TOKEN@github.com/francesca64/xkbcommon-dl.git"
git fetch upstream
git reset upstream/gh-pages

rm -rf docs
mv target/doc docs

git add -A docs
git commit -m "Updated docs for ${rev}"
git push --force --quiet upstream HEAD:gh-pages