diff --git a/dist/index.js b/dist/index.js index c643039..b348653 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7204,7 +7204,7 @@ class GitAuthHelper { if (((_a = this.temporaryHomePath) === null || _a === void 0 ? void 0 : _a.length) > 0) { core.debug(`Unsetting HOME override`); this.git.removeEnvironmentVariable('HOME'); - core.info(`hi there: $(this.temporaryHomePath)`); + core.info(`hi there: ${this.temporaryHomePath}`); yield io .rmRF(this.temporaryHomePath) // eslint-disable-next-line github/no-then diff --git a/package.json b/package.json index 4131727..540069b 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "description": "checkout action", "main": "lib/main.js", "scripts": { + "build-full": "npm run format && npm run build && npm run test", "build": "tsc && ncc build && node lib/misc/generate-docs.js", "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'", diff --git a/src/git-auth-helper.ts b/src/git-auth-helper.ts index 7788322..1689fc6 100644 --- a/src/git-auth-helper.ts +++ b/src/git-auth-helper.ts @@ -198,7 +198,7 @@ class GitAuthHelper { core.debug(`Unsetting HOME override`) this.git.removeEnvironmentVariable('HOME') - core.info(`hi there: $(this.temporaryHomePath)`) + core.info(`hi there: ${this.temporaryHomePath}`) await io .rmRF(this.temporaryHomePath) // eslint-disable-next-line github/no-then