2024-09-16 20:08:31 +08:00
|
|
|
# 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://<username>:<password>@github.com/Brian-Ding/ant-design-blazor.git
|
|
|
|
git checkout -b $(branch)
|
|
|
|
git push -u github $(branch)
|
|
|
|
|
|
|
|
|
|
|
|
displayName: 'Command Line Script'
|