Use library to provide deployment key for GitHub (#497)

* Use library to provide deployment key for GitHub
This commit is contained in:
Thad House 2020-06-11 16:31:02 -07:00 коммит произвёл GitHub
Родитель 6a0bb01b7f
Коммит 5a273249d3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -15,6 +15,9 @@ Copy-Item -Path $ResultsPath -Destination $GitPath -Recurse -Force
git config user.email "quicdev@microsoft.com"
git config user.name "QUIC Dev Bot"
git config --global credential.helper store
Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:MAPPED_DEPLOYMENT_KEY):x-oauth-basic@github.com`n"
git add .
git status

Просмотреть файл

@ -10,9 +10,9 @@ jobs:
variables:
- name: runCodesignValidationInjection
value: false
- group: DeploymentKeys
steps:
- checkout: self
persistCredentials: true
- task: DownloadBuildArtifacts@0
displayName: Download Build Artifacts
@ -31,3 +31,5 @@ jobs:
inputs:
pwsh: true
filePath: .azure/scripts/publish-performance-results.ps1
env:
MAPPED_DEPLOYMENT_KEY: $(GitHubDeploymentKey)