Go应用程序未部署在Heroku上

I have a Go Application which I want to deploy on Heroku. While executing the command: git push Heroku master, It generates the following error.

Installing go1.11.1
remote: -----> Fetching go1.11.1.linux-amd64.tar.gz... done
remote: -----> Fetching errors-0.8.0.tar.gz... done
remote: -----> Fetching gb-0.4.4.tar.gz... done
remote: -----> Installing GB v0.4.4... done
remote: -----> Running: gb build -tags heroku
remote: FATAL: command "build" failed: no packages supplied
remote:  !     Push rejected, failed to compile Go app.

I performed the following steps:

$ heroku login
$ git init
$ git add -A .
$ git commit -m code
$ echo 'web: gumball' > Procfile
$ go get github.com/kr/godep
$ godep save 
$ git add -A .
$ git commit -m dependencies
$ heroku create -b https://github.com/kr/heroku-buildpack-go.git
$ git push heroku master