1
0
Fork 0
mirror of https://github.com/nealey/vail.git synced 2025-01-19 05:14:50 -07:00
vail/publish.sh
Neale Pickett 74ad07174a Many changes
* MIDI
  * Send MIDI key release for v2 of vail adapter
  * Now handles hot-plugging MIDI devices!
* Iambic input
  * Typeahead is now a toggle
  * Implemented iambic mode A, also as a toggle (#31)
* If you set the repeater to "debug", it spews out debugging messages
* Made it a bit easier on myself to update my instance
2022-04-19 22:41:09 -06:00

13 lines
315 B
Bash
Executable file

#! /bin/sh
cd $(dirname $0)
case "$1" in
-prod|--prod)
echo "Push to main branch, then update stack."
docker -H ssh://melville.woozle.org service update --image ghcr.io/nealey/vail:main melville_vail
;;
"")
rsync -va static/ melville.woozle.org:/srv/vail/testing/
;;
esac