Bump darc to fix VMR synchronization edge case (#17693)

This commit is contained in:
Přemek Vysoký 2023-11-06 13:50:53 +01:00 committed by GitHub
parent 13399887d7
commit 8bd1ebc600
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 18 additions and 62 deletions

View file

@ -22,6 +22,13 @@ steps:
displayName: Clone dotnet/installer
path: installer
# This step is needed so that when we get a detached HEAD / shallow clone,
# we still pull the commit into the temporary installer clone to use it during the sync.
- script: |
git branch installer-head
displayName: Label PR commit
workingDirectory: $(Agent.BuildDirectory)/installer
- script: |
git checkout -B ${{ parameters.vmrBranch }}
echo "##vso[task.setvariable variable=vmrBranch]${{ parameters.vmrBranch }}"