Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoão Moreno <joao.moreno@microsoft.com>2020-11-24 13:44:18 +0300
committerJoão Moreno <joao.moreno@microsoft.com>2020-11-24 13:45:39 +0300
commit7e4f90277da57cac7e5a8081878a400a77600e57 (patch)
tree55404b16b7389b4cb5b4a64ef93c70a48a0fffa6 /build/azure-pipelines/distro-build.yml
parent9a657db088e1e22f7ad14b5ef812bc76ee7f07f7 (diff)
run prettier over yml files
Diffstat (limited to 'build/azure-pipelines/distro-build.yml')
-rw-r--r--build/azure-pipelines/distro-build.yml54
1 files changed, 27 insertions, 27 deletions
diff --git a/build/azure-pipelines/distro-build.yml b/build/azure-pipelines/distro-build.yml
index 15526080abb..331fbf9675e 100644
--- a/build/azure-pipelines/distro-build.yml
+++ b/build/azure-pipelines/distro-build.yml
@@ -1,42 +1,42 @@
trigger:
branches:
- include: ['master', 'release/*']
+ include: ["master", "release/*"]
pr:
branches:
- include: ['master', 'release/*']
+ include: ["master", "release/*"]
steps:
-- task: NodeTool@0
- inputs:
- versionSpec: "12.18.3"
+ - task: NodeTool@0
+ inputs:
+ versionSpec: "12.18.3"
-- task: AzureKeyVault@1
- displayName: 'Azure Key Vault: Get Secrets'
- inputs:
- azureSubscription: 'vscode-builds-subscription'
- KeyVaultName: vscode
+ - task: AzureKeyVault@1
+ displayName: "Azure Key Vault: Get Secrets"
+ inputs:
+ azureSubscription: "vscode-builds-subscription"
+ KeyVaultName: vscode
-- script: |
- set -e
+ - script: |
+ set -e
- cat << EOF > ~/.netrc
- machine github.com
- login vscode
- password $(github-distro-mixin-password)
- EOF
+ cat << EOF > ~/.netrc
+ machine github.com
+ login vscode
+ password $(github-distro-mixin-password)
+ EOF
- git config user.email "vscode@microsoft.com"
- git config user.name "VSCode"
+ git config user.email "vscode@microsoft.com"
+ git config user.name "VSCode"
- git remote add distro "https://github.com/$VSCODE_MIXIN_REPO.git"
- git fetch distro
+ git remote add distro "https://github.com/$VSCODE_MIXIN_REPO.git"
+ git fetch distro
- # Push master branch into oss/master
- git push distro origin/master:refs/heads/oss/master
+ # Push master branch into oss/master
+ git push distro origin/master:refs/heads/oss/master
- # Push every release branch into oss/release
- git for-each-ref --format="%(refname:short)" refs/remotes/origin/release/* | sed 's/^origin\/\(.*\)$/\0:refs\/heads\/oss\/\1/' | xargs git push distro
+ # Push every release branch into oss/release
+ git for-each-ref --format="%(refname:short)" refs/remotes/origin/release/* | sed 's/^origin\/\(.*\)$/\0:refs\/heads\/oss\/\1/' | xargs git push distro
- git merge $(node -p "require('./package.json').distro")
+ git merge $(node -p "require('./package.json').distro")
- displayName: Sync & Merge Distro
+ displayName: Sync & Merge Distro