File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " @rage-against-the-pixel/unity-cli" ,
3- "version" : " 1.0.1 " ,
3+ "version" : " 1.0.2 " ,
44 "description" : " A command line utility for the Unity Game Engine." ,
55 "author" : " RageAgainstThePixel" ,
66 "license" : " MIT" ,
1212 "url" : " https://github.com/RageAgainstThePixel/unity-cli/issues"
1313 },
1414 "homepage" : " https://github.com/RageAgainstThePixel/unity-cli#readme" ,
15+ "keywords" : [
16+ " unity" ,
17+ " cli" ,
18+ " command-line" ,
19+ " command line" ,
20+ " tool" ,
21+ " utility" ,
22+ " game development" ,
23+ " devOps" ,
24+ " automation" ,
25+ " build" ,
26+ " continuous integration" ,
27+ " ci" ,
28+ " cd" ,
29+ " development" ,
30+ " gameDev" ,
31+ " game dev" ,
32+ " rage-against-the-pixel" ,
33+ " rage against the pixel"
34+ ],
1535 "main" : " dist/index.js" ,
1636 "bin" : {
17- "unity-cli" : " ./ dist/index.js"
37+ "unity-cli" : " dist/index.js"
1838 },
1939 "files" : [
2040 " dist"
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export class Logger {
1212 static readonly instance : Logger = new Logger ( ) ;
1313
1414 private constructor ( ) {
15- if ( process . env . GITHUB_ACTIONS ) {
15+ if ( process . env . GITHUB_ACTIONS === 'true' ) {
1616 this . _ci = 'GITHUB_ACTIONS' ;
1717 this . logLevel = process . env . ACTIONS_STEP_DEBUG === 'true' ? LogLevel . DEBUG : LogLevel . CI ;
1818 }
You can’t perform that action at this time.
0 commit comments