@@ -1616,6 +1616,32 @@ exports.default = _default;
16161616
16171617/***/ }),
16181618
1619+ /***/ 82:
1620+ /***/ (function(__unusedmodule, exports) {
1621+
1622+ "use strict";
1623+
1624+ // We use any as a valid input type
1625+ /* eslint-disable @typescript-eslint/no-explicit-any */
1626+ Object.defineProperty(exports, "__esModule", { value: true });
1627+ /**
1628+ * Sanitizes an input into a string so it can be passed into issueCommand safely
1629+ * @param input input to sanitize into a string
1630+ */
1631+ function toCommandValue(input) {
1632+ if (input === null || input === undefined) {
1633+ return '';
1634+ }
1635+ else if (typeof input === 'string' || input instanceof String) {
1636+ return input;
1637+ }
1638+ return JSON.stringify(input);
1639+ }
1640+ exports.toCommandValue = toCommandValue;
1641+ //# sourceMappingURL=utils.js.map
1642+
1643+ /***/ }),
1644+
16191645/***/ 87:
16201646/***/ (function(module) {
16211647
@@ -2551,6 +2577,42 @@ function regExpEscape (s) {
25512577}
25522578
25532579
2580+ /***/ }),
2581+
2582+ /***/ 102:
2583+ /***/ (function(__unusedmodule, exports, __webpack_require__) {
2584+
2585+ "use strict";
2586+
2587+ // For internal use, subject to change.
2588+ var __importStar = (this && this.__importStar) || function (mod) {
2589+ if (mod && mod.__esModule) return mod;
2590+ var result = {};
2591+ if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
2592+ result["default"] = mod;
2593+ return result;
2594+ };
2595+ Object.defineProperty(exports, "__esModule", { value: true });
2596+ // We use any as a valid input type
2597+ /* eslint-disable @typescript-eslint/no-explicit-any */
2598+ const fs = __importStar(__webpack_require__(747));
2599+ const os = __importStar(__webpack_require__(87));
2600+ const utils_1 = __webpack_require__(82);
2601+ function issueCommand(command, message) {
2602+ const filePath = process.env[`GITHUB_${command}`];
2603+ if (!filePath) {
2604+ throw new Error(`Unable to find environment variable for file command ${command}`);
2605+ }
2606+ if (!fs.existsSync(filePath)) {
2607+ throw new Error(`Missing file at path: ${filePath}`);
2608+ }
2609+ fs.appendFileSync(filePath, `${utils_1.toCommandValue(message)}${os.EOL}`, {
2610+ encoding: 'utf8'
2611+ });
2612+ }
2613+ exports.issueCommand = issueCommand;
2614+ //# sourceMappingURL=file-command.js.map
2615+
25542616/***/ }),
25552617
25562618/***/ 109:
@@ -8840,6 +8902,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
88408902};
88418903Object.defineProperty(exports, "__esModule", { value: true });
88428904const os = __importStar(__webpack_require__(87));
8905+ const utils_1 = __webpack_require__(82);
88438906/**
88448907 * Commands
88458908 *
@@ -8893,28 +8956,14 @@ class Command {
88938956 return cmdStr;
88948957 }
88958958}
8896- /**
8897- * Sanitizes an input into a string so it can be passed into issueCommand safely
8898- * @param input input to sanitize into a string
8899- */
8900- function toCommandValue(input) {
8901- if (input === null || input === undefined) {
8902- return '';
8903- }
8904- else if (typeof input === 'string' || input instanceof String) {
8905- return input;
8906- }
8907- return JSON.stringify(input);
8908- }
8909- exports.toCommandValue = toCommandValue;
89108959function escapeData(s) {
8911- return toCommandValue(s)
8960+ return utils_1. toCommandValue(s)
89128961 .replace(/%/g, '%25')
89138962 .replace(/\r/g, '%0D')
89148963 .replace(/\n/g, '%0A');
89158964}
89168965function escapeProperty(s) {
8917- return toCommandValue(s)
8966+ return utils_1. toCommandValue(s)
89188967 .replace(/%/g, '%25')
89198968 .replace(/\r/g, '%0D')
89208969 .replace(/\n/g, '%0A')
@@ -10941,6 +10990,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
1094110990};
1094210991Object.defineProperty(exports, "__esModule", { value: true });
1094310992const command_1 = __webpack_require__(431);
10993+ const file_command_1 = __webpack_require__(102);
10994+ const utils_1 = __webpack_require__(82);
1094410995const os = __importStar(__webpack_require__(87));
1094510996const path = __importStar(__webpack_require__(622));
1094610997/**
@@ -10967,9 +11018,17 @@ var ExitCode;
1096711018 */
1096811019// eslint-disable-next-line @typescript-eslint/no-explicit-any
1096911020function exportVariable(name, val) {
10970- const convertedVal = command_1 .toCommandValue(val);
11021+ const convertedVal = utils_1 .toCommandValue(val);
1097111022 process.env[name] = convertedVal;
10972- command_1.issueCommand('set-env', { name }, convertedVal);
11023+ const filePath = process.env['GITHUB_ENV'] || '';
11024+ if (filePath) {
11025+ const delimiter = '_GitHubActionsFileCommandDelimeter_';
11026+ const commandValue = `${name}<<${delimiter}${os.EOL}${convertedVal}${os.EOL}${delimiter}`;
11027+ file_command_1.issueCommand('ENV', commandValue);
11028+ }
11029+ else {
11030+ command_1.issueCommand('set-env', { name }, convertedVal);
11031+ }
1097311032}
1097411033exports.exportVariable = exportVariable;
1097511034/**
@@ -10985,7 +11044,13 @@ exports.setSecret = setSecret;
1098511044 * @param inputPath
1098611045 */
1098711046function addPath(inputPath) {
10988- command_1.issueCommand('add-path', {}, inputPath);
11047+ const filePath = process.env['GITHUB_PATH'] || '';
11048+ if (filePath) {
11049+ file_command_1.issueCommand('PATH', inputPath);
11050+ }
11051+ else {
11052+ command_1.issueCommand('add-path', {}, inputPath);
11053+ }
1098911054 process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`;
1099011055}
1099111056exports.addPath = addPath;
0 commit comments