How do I access my Git tags on Heroku? -
i'm running python app on heroku using gunicorn. want display output of $ git describe
versioning. seems none of git tags have been pushed heroku travis ci deployment.
how i:
- (a) push git tags heroku travis
or
- (b) fetch tags remote git repo on heroku
for (a), have tried running $ git push --tags --force <...>
on travis, travis' before_deploy
clause doesn't have access heroku credentials.
for (b), have tried running $ git fetch --tags --prune
on heroku get:
fatal: not git repository (or parent mount point /app)
Comments
Post a Comment