@@ -3028,6 +3028,32 @@ const windowsRelease = release => {
3028
3028
module.exports = windowsRelease;
3029
3029
3030
3030
3031
+ /***/ }),
3032
+
3033
+ /***/ 82:
3034
+ /***/ (function(__unusedmodule, exports) {
3035
+
3036
+ "use strict";
3037
+
3038
+ // We use any as a valid input type
3039
+ /* eslint-disable @typescript-eslint/no-explicit-any */
3040
+ Object.defineProperty(exports, "__esModule", { value: true });
3041
+ /**
3042
+ * Sanitizes an input into a string so it can be passed into issueCommand safely
3043
+ * @param input input to sanitize into a string
3044
+ */
3045
+ function toCommandValue(input) {
3046
+ if (input === null || input === undefined) {
3047
+ return '';
3048
+ }
3049
+ else if (typeof input === 'string' || input instanceof String) {
3050
+ return input;
3051
+ }
3052
+ return JSON.stringify(input);
3053
+ }
3054
+ exports.toCommandValue = toCommandValue;
3055
+ //# sourceMappingURL=utils.js.map
3056
+
3031
3057
/***/ }),
3032
3058
3033
3059
/***/ 87:
@@ -3037,6 +3063,42 @@ module.exports = require("os");
3037
3063
3038
3064
/***/ }),
3039
3065
3066
+ /***/ 102:
3067
+ /***/ (function(__unusedmodule, exports, __webpack_require__) {
3068
+
3069
+ "use strict";
3070
+
3071
+ // For internal use, subject to change.
3072
+ var __importStar = (this && this.__importStar) || function (mod) {
3073
+ if (mod && mod.__esModule) return mod;
3074
+ var result = {};
3075
+ if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
3076
+ result["default"] = mod;
3077
+ return result;
3078
+ };
3079
+ Object.defineProperty(exports, "__esModule", { value: true });
3080
+ // We use any as a valid input type
3081
+ /* eslint-disable @typescript-eslint/no-explicit-any */
3082
+ const fs = __importStar(__webpack_require__(747));
3083
+ const os = __importStar(__webpack_require__(87));
3084
+ const utils_1 = __webpack_require__(82);
3085
+ function issueCommand(command, message) {
3086
+ const filePath = process.env[`GITHUB_${command}`];
3087
+ if (!filePath) {
3088
+ throw new Error(`Unable to find environment variable for file command ${command}`);
3089
+ }
3090
+ if (!fs.existsSync(filePath)) {
3091
+ throw new Error(`Missing file at path: ${filePath}`);
3092
+ }
3093
+ fs.appendFileSync(filePath, `${utils_1.toCommandValue(message)}${os.EOL}`, {
3094
+ encoding: 'utf8'
3095
+ });
3096
+ }
3097
+ exports.issueCommand = issueCommand;
3098
+ //# sourceMappingURL=file-command.js.map
3099
+
3100
+ /***/ }),
3101
+
3040
3102
/***/ 108:
3041
3103
/***/ (function(module, __unusedexports, __webpack_require__) {
3042
3104
@@ -8396,6 +8458,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
8396
8458
};
8397
8459
Object.defineProperty(exports, "__esModule", { value: true });
8398
8460
const os = __importStar(__webpack_require__(87));
8461
+ const utils_1 = __webpack_require__(82);
8399
8462
/**
8400
8463
* Commands
8401
8464
*
@@ -8450,13 +8513,13 @@ class Command {
8450
8513
}
8451
8514
}
8452
8515
function escapeData(s) {
8453
- return (s || '' )
8516
+ return utils_1.toCommandValue(s )
8454
8517
.replace(/%/g, '%25')
8455
8518
.replace(/\r/g, '%0D')
8456
8519
.replace(/\n/g, '%0A');
8457
8520
}
8458
8521
function escapeProperty(s) {
8459
- return (s || '' )
8522
+ return utils_1.toCommandValue(s )
8460
8523
.replace(/%/g, '%25')
8461
8524
.replace(/\r/g, '%0D')
8462
8525
.replace(/\n/g, '%0A')
@@ -10381,6 +10444,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
10381
10444
};
10382
10445
Object.defineProperty(exports, "__esModule", { value: true });
10383
10446
const command_1 = __webpack_require__(431);
10447
+ const file_command_1 = __webpack_require__(102);
10448
+ const utils_1 = __webpack_require__(82);
10384
10449
const os = __importStar(__webpack_require__(87));
10385
10450
const path = __importStar(__webpack_require__(622));
10386
10451
/**
@@ -10403,11 +10468,21 @@ var ExitCode;
10403
10468
/**
10404
10469
* Sets env variable for this action and future actions in the job
10405
10470
* @param name the name of the variable to set
10406
- * @param val the value of the variable
10471
+ * @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify
10407
10472
*/
10473
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
10408
10474
function exportVariable(name, val) {
10409
- process.env[name] = val;
10410
- command_1.issueCommand('set-env', { name }, val);
10475
+ const convertedVal = utils_1.toCommandValue(val);
10476
+ process.env[name] = convertedVal;
10477
+ const filePath = process.env['GITHUB_ENV'] || '';
10478
+ if (filePath) {
10479
+ const delimiter = '_GitHubActionsFileCommandDelimeter_';
10480
+ const commandValue = `${name}<<${delimiter}${os.EOL}${convertedVal}${os.EOL}${delimiter}`;
10481
+ file_command_1.issueCommand('ENV', commandValue);
10482
+ }
10483
+ else {
10484
+ command_1.issueCommand('set-env', { name }, convertedVal);
10485
+ }
10411
10486
}
10412
10487
exports.exportVariable = exportVariable;
10413
10488
/**
@@ -10423,7 +10498,13 @@ exports.setSecret = setSecret;
10423
10498
* @param inputPath
10424
10499
*/
10425
10500
function addPath(inputPath) {
10426
- command_1.issueCommand('add-path', {}, inputPath);
10501
+ const filePath = process.env['GITHUB_PATH'] || '';
10502
+ if (filePath) {
10503
+ file_command_1.issueCommand('PATH', inputPath);
10504
+ }
10505
+ else {
10506
+ command_1.issueCommand('add-path', {}, inputPath);
10507
+ }
10427
10508
process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`;
10428
10509
}
10429
10510
exports.addPath = addPath;
@@ -10446,12 +10527,22 @@ exports.getInput = getInput;
10446
10527
* Sets the value of an output.
10447
10528
*
10448
10529
* @param name name of the output to set
10449
- * @param value value to store
10530
+ * @param value value to store. Non-string values will be converted to a string via JSON.stringify
10450
10531
*/
10532
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
10451
10533
function setOutput(name, value) {
10452
10534
command_1.issueCommand('set-output', { name }, value);
10453
10535
}
10454
10536
exports.setOutput = setOutput;
10537
+ /**
10538
+ * Enables or disables the echoing of commands into stdout for the rest of the step.
10539
+ * Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set.
10540
+ *
10541
+ */
10542
+ function setCommandEcho(enabled) {
10543
+ command_1.issue('echo', enabled ? 'on' : 'off');
10544
+ }
10545
+ exports.setCommandEcho = setCommandEcho;
10455
10546
//-----------------------------------------------------------------------
10456
10547
// Results
10457
10548
//-----------------------------------------------------------------------
@@ -10468,6 +10559,13 @@ exports.setFailed = setFailed;
10468
10559
//-----------------------------------------------------------------------
10469
10560
// Logging Commands
10470
10561
//-----------------------------------------------------------------------
10562
+ /**
10563
+ * Gets whether Actions Step Debug is on or not
10564
+ */
10565
+ function isDebug() {
10566
+ return process.env['RUNNER_DEBUG'] === '1';
10567
+ }
10568
+ exports.isDebug = isDebug;
10471
10569
/**
10472
10570
* Writes debug message to user log
10473
10571
* @param message debug message
@@ -10478,18 +10576,18 @@ function debug(message) {
10478
10576
exports.debug = debug;
10479
10577
/**
10480
10578
* Adds an error issue
10481
- * @param message error issue message
10579
+ * @param message error issue message. Errors will be converted to string via toString()
10482
10580
*/
10483
10581
function error(message) {
10484
- command_1.issue('error', message);
10582
+ command_1.issue('error', message instanceof Error ? message.toString() : message );
10485
10583
}
10486
10584
exports.error = error;
10487
10585
/**
10488
10586
* Adds an warning issue
10489
- * @param message warning issue message
10587
+ * @param message warning issue message. Errors will be converted to string via toString()
10490
10588
*/
10491
10589
function warning(message) {
10492
- command_1.issue('warning', message);
10590
+ command_1.issue('warning', message instanceof Error ? message.toString() : message );
10493
10591
}
10494
10592
exports.warning = warning;
10495
10593
/**
@@ -10547,8 +10645,9 @@ exports.group = group;
10547
10645
* Saves state for current action, the state can only be retrieved by this action's post job execution.
10548
10646
*
10549
10647
* @param name name of the state to store
10550
- * @param value value to store
10648
+ * @param value value to store. Non-string values will be converted to a string via JSON.stringify
10551
10649
*/
10650
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
10552
10651
function saveState(name, value) {
10553
10652
command_1.issueCommand('save-state', { name }, value);
10554
10653
}
0 commit comments