소스 검색

Merge pull request #69 from stripedpajamas/master

Add logging when GH token doesn't exist in Windows build
Peter Squicciarini 6 년 전
부모
커밋
dd6e08a285
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      check_tags.ps1

+ 2 - 0
check_tags.ps1

@@ -6,6 +6,8 @@ echo "VSCodium assets: ${VSCODIUM_ASSETS}"
 
 # if we just don't have the github token, get out fast
 if (!$env:MAPPED_GITHUB_TOKEN.length -le 15) {
+  echo "This build does not have the GH token"
+  echo $env:MAPPED_GITHUB_TOKEN
   return
 }