Skip to content

Commit 6772c62

Browse files
unity-cli@v1.0.2
- fix some package config - fix GHA logger env check
1 parent ed3f07a commit 6772c62

2 files changed

Lines changed: 23 additions & 3 deletions

File tree

package.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",
@@ -12,9 +12,29 @@
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"

src/logging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)