easy-deploy-bundle
easy-deploy-bundle copied to clipboard
How to deploy a specific git tag ?
Hello,
I would like to know if it is possible to deploy a project that has a specific git tag ?
Thank you !
Hi, Have you tried by passing your tag name in the repositoryBranch method (in the configure function of your deploy_*.php file )? eg: v1.0.0
$this->getConfigBuilder()->repositoryBranch('v1.0.0')
Hi, Have you tried by passing your tag name in the repositoryBranch method (in the configure function of your deploy_*.php file )? eg: v1.0.0
$this->getConfigBuilder()->repositoryBranch('v1.0.0')
The problem with this is having to update code for each release. Being able to
php bin/console deploy prod @tag
would be a really nice feature.
I created a PR for this feature. #110