Add Magefile and release target

This commit is contained in:
2019-05-24 19:29:22 +02:00
parent eba02717cf
commit e6b5c55df8
13 changed files with 829 additions and 167 deletions

11
misc/mage/install Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
set -eo pipefail
echo "Installing Mage..."
go get -u -d github.com/magefile/mage
(
cd $GOPATH/src/github.com/magefile/mage
go run bootstrap.go
)