# Starter pipeline # Start with a minimal pipeline that you can customize to build and deploy your code. # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml variables: # pipeline-level branch: 'azure_branch' trigger: - master pool: vmImage: 'ubuntu-latest' steps: - script: | git remote add github https://:@github.com/Brian-Ding/ant-design-blazor.git git checkout -b $(branch) git push -u github $(branch) displayName: 'Command Line Script'