Hey,
I was getting an error when trying to deployy packages to dev using the updated repository. I was able to fix it by changing the template yml.
Steps to reproduce:
Merge code with Main and run the quick-build-deploy pipeline(Based off .azure-pipelines/quick-build-deploy.yml)
Error received:
› Warning: sfpowerscripts orchestrator deploy is not a sfdx command.
Did you mean force source deploy? [y/n]:
› Error: Run sfdx help for a list of available commands.
##[error]Bash exited with code '127'.
Resolution:
Changed line 114 of .azure-pipelines/quick-build-deploy.yml from:
- script: sfdx sfpowerscripts:orchestrator:deploy -u dev --skipifalreadyinstalled -g "##[group],##[endgroup]"
to
- script: sfp orchestrator:deploy -u dev --skipifalreadyinstalled -g "##[group],##[endgroup]"