소스 검색

Use BRANCH jenkins variable in release script

yogevbd 5 년 전
부모
커밋
0a8bbd4e7e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      scripts/release.js

+ 1
- 1
scripts/release.js 파일 보기

@@ -8,7 +8,7 @@ const path = require('path');
8 8
 // Workaround JS
9 9
 const isRelease = process.env.RELEASE_BUILD === 'true';
10 10
 
11
-const BRANCH = process.env.GIT_BRANCH;
11
+const BRANCH = process.env.BRANCH;
12 12
 const VERSION_TAG = isRelease ? 'latest' : 'snapshot';
13 13
 const VERSION_INC = 'patch';
14 14