Hi
I'm using heroku-deploy to deploy a laravel app to Heroku. i would need to run some commands on the server after the deployment. I need, among other things, to migrate my database. Typically i would run heroku run -a $HEROKU_APP_NAME php artisan migrate (Laravel app). I'm wondering if's possible using https://bitbucket.org/atlassian/heroku-deploy/src/master/
my bitbucket-pipelines:
(...)
- step:
name: Deploy
script:
- pipe: atlassian/heroku-deploy:1.1.1
variables:
HEROKU_API_KEY: $HEROKU_API_KEY
HEROKU_APP_NAME: $HEROKU_APP_NAME
ZIP_FILE: "application.tgz"
WAIT: 'true'
- #heroku run -a $HEROKU_APP_NAME php artisan migrate --force
- #heroku run -a $HEROKU_APP_NAME php artisan queue:restart
Hi @remipou . Currently, it's not possible to execute additional commands with the pipe. You have to run the as a separate set of commands, like you do in your example basically.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.