mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Add some debugging, fix env variable exists check
This commit is contained in:
parent
c8e21df269
commit
91c3d4afa5
@ -137,14 +137,21 @@ test_script:
|
|||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- ps: |
|
- ps: |
|
||||||
if($env:APPVEYOR_PULL_REQUEST_NUMBER -eq "") {
|
if(-not (Test-Path env:APPVEYOR_PULL_REQUEST_NUMBER)) {
|
||||||
# Only push asm during CI. Credentials are not available during a PR
|
# Only push asm during CI. Credentials are not available during a PR
|
||||||
|
Write-Host "[before_deploy] Not a PR, pushing asm!"
|
||||||
|
|
||||||
git config --global credential.helper store
|
git config --global credential.helper store
|
||||||
Add-Content "$HOME\.git-credentials" "https://$($env:access_token):x-oauth-basic@github.com`n" | Out-Null
|
Add-Content "$HOME\.git-credentials" "https://$($env:access_token):x-oauth-basic@github.com`n" | Out-Null
|
||||||
git config --global user.email "dadonenf@microsoft.com"
|
git config --global user.email "dadonenf@microsoft.com"
|
||||||
git config --global user.name "Daniel Donenfeld"
|
git config --global user.name "Daniel Donenfeld"
|
||||||
cd %APPVEYOR_BUILD_FOLDER%
|
cd %APPVEYOR_BUILD_FOLDER%
|
||||||
|
|
||||||
|
Write-Host "[before_deploy] About to call push_asm batch script!"
|
||||||
|
|
||||||
asm\scripts\push_asm.bat
|
asm\scripts\push_asm.bat
|
||||||
|
|
||||||
|
Write-Host "[before_deploy] after push asm!"
|
||||||
}
|
}
|
||||||
|
|
||||||
deploy_script:
|
deploy_script:
|
||||||
|
Loading…
Reference in New Issue
Block a user