2.0.0 • Published 9 years ago

heroku-deploy-archive v2.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

heroku-deploy-archive

The successor of the heroku-build plugin

Installation

After installing the Heroku Toolbelt run:

$ heroku plugins:install heroku-deploy-archive

the plugin should now be listed under heroku plugins:

$ heroku plugins
=== Installed Plugins
heroku-deploy-archive

Usage

After loggin in with the heroku toolbelt (heroku auth) bundle all the files you need to be deployed together as a tarball, like this:

cd files-to-be-deployed
tar cvvf deploy-me.tgz ./*

then deploy with:

$ heroku deploy:archive -app your-app ./deploy-me.tgz some-version

Where some-version should be replaced with a meaningful version information (it's up to you).

For instance you may want to do:

$ heroku deploy:archive --app ./deploy-me.tgz "$(git rev-parse HEAD)"

which will use the current git commit hash as the version to be displayed on the "Activity" panel on heroku.com.

Contributing

Found a bug or have an improvement or new feature in mind? Awesome! Just go for it with either a pull request or an issue - also check out the Contributing.md file

License

MIT License.

2.0.0

9 years ago

1.1.3

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago