We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cad50f2 commit bb15888Copy full SHA for bb15888
build/azure-pipelines/distro-build.yml
@@ -7,16 +7,26 @@ trigger:
7
pr: none
8
9
steps:
10
- - checkout: self
11
- persistCredentials: true
12
-
13
- task: NodeTool@0
14
inputs:
15
versionSpec: "16.x"
16
+ - task: AzureKeyVault@1
+ displayName: "Azure Key Vault: Get Secrets"
+ inputs:
17
+ azureSubscription: "vscode-builds-subscription"
18
+ KeyVaultName: vscode
19
+ SecretsFilter: "github-distro-mixin-password"
20
+
21
- script: |
22
set -e
23
24
+ cat << EOF > ~/.netrc
25
+ machine github.com
26
+ login vscode
27
+ password $(github-distro-mixin-password)
28
+ EOF
29
30
git config user.email "[email protected]"
31
git config user.name "VSCode"
32
0 commit comments