From Azure DevOps
Mapping a self-run Azure Pipelines setup — container-based build, deploy, and publish stages — onto codev, one pipeline at a time.
What your pipeline looks like today
# azure-pipelines.yml (self-run)
trigger:
branches:
include: [main]
pool:
vmImage: ubuntu-latest
container:
image: source.flxbl.io/flxbl/sfp-pro:51.x # you pin and upgrade this
endpoint: flxbl-registry # a service connection you maintain
steps:
- checkout: self
fetchDepth: 0
- script: sf org login sfdx-url -f $(DEVHUB_AUTH_FILE) -a devhub -d
displayName: Authenticate Dev Hub
- script: sfp build -v devhub --diffcheck --buildnumber $(Build.BuildId) --branch $(Build.SourceBranchName)
displayName: Create packages
- script: sfp publish -d artifacts --npm --scope my-org --gittag --pushgittag
displayName: Publish artifactsWhat codev runs instead
Your pipeline today
On codev
Validation results land on the pull request


Move one pipeline at a time
Last updated
Was this helpful?