aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2019-10-26 13:03:07 +0700
committerLibravatar Amine Mouafik <amine@mouafik.fr>2019-10-26 13:03:07 +0700
commite30189ae97cbb297e628cf3b2c491bf25c99a200 (patch)
treef4e52505a0eda13f5cad3ed908c36f9551a1831e /appveyor.yml
parentRevert "Use HTTPS instead of SSL for git submodules" (diff)
downloadferdium-app-e30189ae97cbb297e628cf3b2c491bf25c99a200.tar.gz
ferdium-app-e30189ae97cbb297e628cf3b2c491bf25c99a200.tar.zst
ferdium-app-e30189ae97cbb297e628cf3b2c491bf25c99a200.zip
Use service account ssh key for submodules checkout
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 1034565ed..5d2e0c6bd 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -4,6 +4,10 @@ environment:
4version: 5.0.1.{build} 4version: 5.0.1.{build}
5 5
6install: 6install:
7 - ps: $fileContent = "-----BEGIN RSA PRIVATE KEY-----`n"
8 - ps: $fileContent += $env:priv_key.Replace(' ', "`n")
9 - ps: $fileContent += "`n-----END RSA PRIVATE KEY-----`n"
10 - ps: Set-Content $env:userprofile\.ssh\id_rsa $fileContent
7 - git submodule update --init --recursive 11 - git submodule update --init --recursive
8 - ps: Install-Product node 10 12 - ps: Install-Product node 10
9 - npx lerna bootstrap 13 - npx lerna bootstrap