-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V7 deployer local not work #2679
Comments
<?php
namespace Deployer;
require 'recipe/common.php';
desc('Build Artifact');
task('build', function () {
set('deploy_path', '.');
set('release_path', '.');
set('current_path', '.');
$origStaticOptions = get('static_deploy_options');
set('static_deploy_options', '-f ' . $origStaticOptions);
invoke('deploy:vendors');
invoke('artifact:package');
})->local();
localhost('build'); Works:
|
@antonmedv Not anymore. What are we supposed to use instead of |
4 tasks
Would that be a solution? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi
I try upgrade my deploy.php from deployer 6.x to 7.x but I have problem with local tasks
I have this configuration in deployer 6.x
But when I run this by command
dep -f /deploy.php build
I got error
Where my mistake ?
Thanks
The text was updated successfully, but these errors were encountered: