aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: ffc3cdeee25ac1217d5f97abaa7d74c85f1901c0 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env sh

CGO_ENABLED=0 go build . || exit 1
docker build -t git.d464.sh/diogo464/belverde-fire -f Containerfile . || exit 1

if [ "$PUSH" = "1" ]; then
	docker push git.d464.sh/diogo464/belverde-fire
fi