|
|
|
|
@@ -140,7 +140,6 @@ const file_command_1 = __nccwpck_require__(717);
|
|
|
|
|
const utils_1 = __nccwpck_require__(5278);
|
|
|
|
|
const os = __importStar(__nccwpck_require__(2037));
|
|
|
|
|
const path = __importStar(__nccwpck_require__(1017));
|
|
|
|
|
const uuid_1 = __nccwpck_require__(5840);
|
|
|
|
|
const oidc_utils_1 = __nccwpck_require__(8041);
|
|
|
|
|
/**
|
|
|
|
|
* The code to exit an action
|
|
|
|
|
@@ -170,14 +169,7 @@ function exportVariable(name, val) {
|
|
|
|
|
process.env[name] = convertedVal;
|
|
|
|
|
const filePath = process.env['GITHUB_ENV'] || '';
|
|
|
|
|
if (filePath) {
|
|
|
|
|
const delimiter = `ghadelimiter_${uuid_1.v4()}`;
|
|
|
|
|
// These should realistically never happen, but just in case someone finds a way to exploit uuid generation let's not allow keys or values that contain the delimiter.
|
|
|
|
|
if (name.includes(delimiter)) {
|
|
|
|
|
throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
|
|
|
|
|
}
|
|
|
|
|
if (convertedVal.includes(delimiter)) {
|
|
|
|
|
throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
|
|
|
|
|
}
|
|
|
|
|
const delimiter = '_GitHubActionsFileCommandDelimeter_';
|
|
|
|
|
const commandValue = `${name}<<${delimiter}${os.EOL}${convertedVal}${os.EOL}${delimiter}`;
|
|
|
|
|
file_command_1.issueCommand('ENV', commandValue);
|
|
|
|
|
}
|
|
|
|
|
@@ -433,13 +425,6 @@ Object.defineProperty(exports, "summary", ({ enumerable: true, get: function ()
|
|
|
|
|
*/
|
|
|
|
|
var summary_2 = __nccwpck_require__(1327);
|
|
|
|
|
Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } }));
|
|
|
|
|
/**
|
|
|
|
|
* Path exports
|
|
|
|
|
*/
|
|
|
|
|
var path_utils_1 = __nccwpck_require__(2981);
|
|
|
|
|
Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } }));
|
|
|
|
|
Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } }));
|
|
|
|
|
Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } }));
|
|
|
|
|
//# sourceMappingURL=core.js.map
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
@@ -577,71 +562,6 @@ exports.OidcClient = OidcClient;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 2981:
|
|
|
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
|
|
|
if (k2 === undefined) k2 = k;
|
|
|
|
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
|
|
|
}) : (function(o, m, k, k2) {
|
|
|
|
|
if (k2 === undefined) k2 = k;
|
|
|
|
|
o[k2] = m[k];
|
|
|
|
|
}));
|
|
|
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
|
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
|
|
|
}) : function(o, v) {
|
|
|
|
|
o["default"] = v;
|
|
|
|
|
});
|
|
|
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
|
|
if (mod && mod.__esModule) return mod;
|
|
|
|
|
var result = {};
|
|
|
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
|
|
|
__setModuleDefault(result, mod);
|
|
|
|
|
return result;
|
|
|
|
|
};
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
|
|
exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0;
|
|
|
|
|
const path = __importStar(__nccwpck_require__(1017));
|
|
|
|
|
/**
|
|
|
|
|
* toPosixPath converts the given path to the posix form. On Windows, \\ will be
|
|
|
|
|
* replaced with /.
|
|
|
|
|
*
|
|
|
|
|
* @param pth. Path to transform.
|
|
|
|
|
* @return string Posix path.
|
|
|
|
|
*/
|
|
|
|
|
function toPosixPath(pth) {
|
|
|
|
|
return pth.replace(/[\\]/g, '/');
|
|
|
|
|
}
|
|
|
|
|
exports.toPosixPath = toPosixPath;
|
|
|
|
|
/**
|
|
|
|
|
* toWin32Path converts the given path to the win32 form. On Linux, / will be
|
|
|
|
|
* replaced with \\.
|
|
|
|
|
*
|
|
|
|
|
* @param pth. Path to transform.
|
|
|
|
|
* @return string Win32 path.
|
|
|
|
|
*/
|
|
|
|
|
function toWin32Path(pth) {
|
|
|
|
|
return pth.replace(/[/]/g, '\\');
|
|
|
|
|
}
|
|
|
|
|
exports.toWin32Path = toWin32Path;
|
|
|
|
|
/**
|
|
|
|
|
* toPlatformPath converts the given path to a platform-specific path. It does
|
|
|
|
|
* this by replacing instances of / and \ with the platform-specific path
|
|
|
|
|
* separator.
|
|
|
|
|
*
|
|
|
|
|
* @param pth The path to platformize.
|
|
|
|
|
* @return string The platform-specific path.
|
|
|
|
|
*/
|
|
|
|
|
function toPlatformPath(pth) {
|
|
|
|
|
return pth.replace(/[/\\]/g, path.sep);
|
|
|
|
|
}
|
|
|
|
|
exports.toPlatformPath = toPlatformPath;
|
|
|
|
|
//# sourceMappingURL=path-utils.js.map
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 1327:
|
|
|
|
|
/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) {
|
|
|
|
|
|
|
|
|
|
@@ -12140,13 +12060,13 @@ module.exports = setup;
|
|
|
|
|
if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {
|
|
|
|
|
module.exports = __nccwpck_require__(8222);
|
|
|
|
|
} else {
|
|
|
|
|
module.exports = __nccwpck_require__(4874);
|
|
|
|
|
module.exports = __nccwpck_require__(5332);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 4874:
|
|
|
|
|
/***/ 5332:
|
|
|
|
|
/***/ ((module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@@ -14503,652 +14423,6 @@ if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) {
|
|
|
|
|
exports.debug = debug; // for test
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 5840:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "v1", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _v.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "v3", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _v2.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "v4", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _v3.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "v5", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _v4.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "NIL", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _nil.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "version", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _version.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "validate", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _validate.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "stringify", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _stringify.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
Object.defineProperty(exports, "parse", ({
|
|
|
|
|
enumerable: true,
|
|
|
|
|
get: function () {
|
|
|
|
|
return _parse.default;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
var _v = _interopRequireDefault(__nccwpck_require__(8628));
|
|
|
|
|
|
|
|
|
|
var _v2 = _interopRequireDefault(__nccwpck_require__(6409));
|
|
|
|
|
|
|
|
|
|
var _v3 = _interopRequireDefault(__nccwpck_require__(5122));
|
|
|
|
|
|
|
|
|
|
var _v4 = _interopRequireDefault(__nccwpck_require__(9120));
|
|
|
|
|
|
|
|
|
|
var _nil = _interopRequireDefault(__nccwpck_require__(5332));
|
|
|
|
|
|
|
|
|
|
var _version = _interopRequireDefault(__nccwpck_require__(1595));
|
|
|
|
|
|
|
|
|
|
var _validate = _interopRequireDefault(__nccwpck_require__(6900));
|
|
|
|
|
|
|
|
|
|
var _stringify = _interopRequireDefault(__nccwpck_require__(8950));
|
|
|
|
|
|
|
|
|
|
var _parse = _interopRequireDefault(__nccwpck_require__(2746));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 4569:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _crypto = _interopRequireDefault(__nccwpck_require__(6113));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
function md5(bytes) {
|
|
|
|
|
if (Array.isArray(bytes)) {
|
|
|
|
|
bytes = Buffer.from(bytes);
|
|
|
|
|
} else if (typeof bytes === 'string') {
|
|
|
|
|
bytes = Buffer.from(bytes, 'utf8');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _crypto.default.createHash('md5').update(bytes).digest();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = md5;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 5332:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
var _default = '00000000-0000-0000-0000-000000000000';
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 2746:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _validate = _interopRequireDefault(__nccwpck_require__(6900));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
function parse(uuid) {
|
|
|
|
|
if (!(0, _validate.default)(uuid)) {
|
|
|
|
|
throw TypeError('Invalid UUID');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let v;
|
|
|
|
|
const arr = new Uint8Array(16); // Parse ########-....-....-....-............
|
|
|
|
|
|
|
|
|
|
arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;
|
|
|
|
|
arr[1] = v >>> 16 & 0xff;
|
|
|
|
|
arr[2] = v >>> 8 & 0xff;
|
|
|
|
|
arr[3] = v & 0xff; // Parse ........-####-....-....-............
|
|
|
|
|
|
|
|
|
|
arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;
|
|
|
|
|
arr[5] = v & 0xff; // Parse ........-....-####-....-............
|
|
|
|
|
|
|
|
|
|
arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;
|
|
|
|
|
arr[7] = v & 0xff; // Parse ........-....-....-####-............
|
|
|
|
|
|
|
|
|
|
arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;
|
|
|
|
|
arr[9] = v & 0xff; // Parse ........-....-....-....-############
|
|
|
|
|
// (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes)
|
|
|
|
|
|
|
|
|
|
arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;
|
|
|
|
|
arr[11] = v / 0x100000000 & 0xff;
|
|
|
|
|
arr[12] = v >>> 24 & 0xff;
|
|
|
|
|
arr[13] = v >>> 16 & 0xff;
|
|
|
|
|
arr[14] = v >>> 8 & 0xff;
|
|
|
|
|
arr[15] = v & 0xff;
|
|
|
|
|
return arr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = parse;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 814:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
var _default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 807:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = rng;
|
|
|
|
|
|
|
|
|
|
var _crypto = _interopRequireDefault(__nccwpck_require__(6113));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate
|
|
|
|
|
|
|
|
|
|
let poolPtr = rnds8Pool.length;
|
|
|
|
|
|
|
|
|
|
function rng() {
|
|
|
|
|
if (poolPtr > rnds8Pool.length - 16) {
|
|
|
|
|
_crypto.default.randomFillSync(rnds8Pool);
|
|
|
|
|
|
|
|
|
|
poolPtr = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rnds8Pool.slice(poolPtr, poolPtr += 16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 5274:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _crypto = _interopRequireDefault(__nccwpck_require__(6113));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
function sha1(bytes) {
|
|
|
|
|
if (Array.isArray(bytes)) {
|
|
|
|
|
bytes = Buffer.from(bytes);
|
|
|
|
|
} else if (typeof bytes === 'string') {
|
|
|
|
|
bytes = Buffer.from(bytes, 'utf8');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _crypto.default.createHash('sha1').update(bytes).digest();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = sha1;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 8950:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _validate = _interopRequireDefault(__nccwpck_require__(6900));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Convert array of 16 byte values to UUID string format of the form:
|
|
|
|
|
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
|
|
|
*/
|
|
|
|
|
const byteToHex = [];
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < 256; ++i) {
|
|
|
|
|
byteToHex.push((i + 0x100).toString(16).substr(1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function stringify(arr, offset = 0) {
|
|
|
|
|
// Note: Be careful editing this code! It's been tuned for performance
|
|
|
|
|
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
|
|
|
|
|
const uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one
|
|
|
|
|
// of the following:
|
|
|
|
|
// - One or more input array values don't map to a hex octet (leading to
|
|
|
|
|
// "undefined" in the uuid)
|
|
|
|
|
// - Invalid input values for the RFC `version` or `variant` fields
|
|
|
|
|
|
|
|
|
|
if (!(0, _validate.default)(uuid)) {
|
|
|
|
|
throw TypeError('Stringified UUID is invalid');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return uuid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = stringify;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 8628:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _rng = _interopRequireDefault(__nccwpck_require__(807));
|
|
|
|
|
|
|
|
|
|
var _stringify = _interopRequireDefault(__nccwpck_require__(8950));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
// **`v1()` - Generate time-based UUID**
|
|
|
|
|
//
|
|
|
|
|
// Inspired by https://github.com/LiosK/UUID.js
|
|
|
|
|
// and http://docs.python.org/library/uuid.html
|
|
|
|
|
let _nodeId;
|
|
|
|
|
|
|
|
|
|
let _clockseq; // Previous uuid creation time
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let _lastMSecs = 0;
|
|
|
|
|
let _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details
|
|
|
|
|
|
|
|
|
|
function v1(options, buf, offset) {
|
|
|
|
|
let i = buf && offset || 0;
|
|
|
|
|
const b = buf || new Array(16);
|
|
|
|
|
options = options || {};
|
|
|
|
|
let node = options.node || _nodeId;
|
|
|
|
|
let clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not
|
|
|
|
|
// specified. We do this lazily to minimize issues related to insufficient
|
|
|
|
|
// system entropy. See #189
|
|
|
|
|
|
|
|
|
|
if (node == null || clockseq == null) {
|
|
|
|
|
const seedBytes = options.random || (options.rng || _rng.default)();
|
|
|
|
|
|
|
|
|
|
if (node == null) {
|
|
|
|
|
// Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
|
|
|
|
|
node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (clockseq == null) {
|
|
|
|
|
// Per 4.2.2, randomize (14 bit) clockseq
|
|
|
|
|
clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
|
|
|
|
|
}
|
|
|
|
|
} // UUID timestamps are 100 nano-second units since the Gregorian epoch,
|
|
|
|
|
// (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
|
|
|
|
|
// time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
|
|
|
|
|
// (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock
|
|
|
|
|
// cycle to simulate higher resolution clock
|
|
|
|
|
|
|
|
|
|
let nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)
|
|
|
|
|
|
|
|
|
|
const dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression
|
|
|
|
|
|
|
|
|
|
if (dt < 0 && options.clockseq === undefined) {
|
|
|
|
|
clockseq = clockseq + 1 & 0x3fff;
|
|
|
|
|
} // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
|
|
|
|
|
// time interval
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
|
|
|
|
|
nsecs = 0;
|
|
|
|
|
} // Per 4.2.1.2 Throw error if too many uuids are requested
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (nsecs >= 10000) {
|
|
|
|
|
throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_lastMSecs = msecs;
|
|
|
|
|
_lastNSecs = nsecs;
|
|
|
|
|
_clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
|
|
|
|
|
|
|
|
|
|
msecs += 12219292800000; // `time_low`
|
|
|
|
|
|
|
|
|
|
const tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
|
|
|
|
|
b[i++] = tl >>> 24 & 0xff;
|
|
|
|
|
b[i++] = tl >>> 16 & 0xff;
|
|
|
|
|
b[i++] = tl >>> 8 & 0xff;
|
|
|
|
|
b[i++] = tl & 0xff; // `time_mid`
|
|
|
|
|
|
|
|
|
|
const tmh = msecs / 0x100000000 * 10000 & 0xfffffff;
|
|
|
|
|
b[i++] = tmh >>> 8 & 0xff;
|
|
|
|
|
b[i++] = tmh & 0xff; // `time_high_and_version`
|
|
|
|
|
|
|
|
|
|
b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
|
|
|
|
|
|
|
|
|
|
b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
|
|
|
|
|
|
|
|
|
|
b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`
|
|
|
|
|
|
|
|
|
|
b[i++] = clockseq & 0xff; // `node`
|
|
|
|
|
|
|
|
|
|
for (let n = 0; n < 6; ++n) {
|
|
|
|
|
b[i + n] = node[n];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return buf || (0, _stringify.default)(b);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = v1;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 6409:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _v = _interopRequireDefault(__nccwpck_require__(5998));
|
|
|
|
|
|
|
|
|
|
var _md = _interopRequireDefault(__nccwpck_require__(4569));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
const v3 = (0, _v.default)('v3', 0x30, _md.default);
|
|
|
|
|
var _default = v3;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 5998:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
exports.URL = exports.DNS = void 0;
|
|
|
|
|
|
|
|
|
|
var _stringify = _interopRequireDefault(__nccwpck_require__(8950));
|
|
|
|
|
|
|
|
|
|
var _parse = _interopRequireDefault(__nccwpck_require__(2746));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
function stringToBytes(str) {
|
|
|
|
|
str = unescape(encodeURIComponent(str)); // UTF8 escape
|
|
|
|
|
|
|
|
|
|
const bytes = [];
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < str.length; ++i) {
|
|
|
|
|
bytes.push(str.charCodeAt(i));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return bytes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
|
|
|
|
|
exports.DNS = DNS;
|
|
|
|
|
const URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
|
|
|
|
|
exports.URL = URL;
|
|
|
|
|
|
|
|
|
|
function _default(name, version, hashfunc) {
|
|
|
|
|
function generateUUID(value, namespace, buf, offset) {
|
|
|
|
|
if (typeof value === 'string') {
|
|
|
|
|
value = stringToBytes(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (typeof namespace === 'string') {
|
|
|
|
|
namespace = (0, _parse.default)(namespace);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (namespace.length !== 16) {
|
|
|
|
|
throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');
|
|
|
|
|
} // Compute hash of namespace and value, Per 4.3
|
|
|
|
|
// Future: Use spread syntax when supported on all platforms, e.g. `bytes =
|
|
|
|
|
// hashfunc([...namespace, ... value])`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let bytes = new Uint8Array(16 + value.length);
|
|
|
|
|
bytes.set(namespace);
|
|
|
|
|
bytes.set(value, namespace.length);
|
|
|
|
|
bytes = hashfunc(bytes);
|
|
|
|
|
bytes[6] = bytes[6] & 0x0f | version;
|
|
|
|
|
bytes[8] = bytes[8] & 0x3f | 0x80;
|
|
|
|
|
|
|
|
|
|
if (buf) {
|
|
|
|
|
offset = offset || 0;
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < 16; ++i) {
|
|
|
|
|
buf[offset + i] = bytes[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (0, _stringify.default)(bytes);
|
|
|
|
|
} // Function#name is not settable on some platforms (#270)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
generateUUID.name = name; // eslint-disable-next-line no-empty
|
|
|
|
|
} catch (err) {} // For CommonJS default export support
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
generateUUID.DNS = DNS;
|
|
|
|
|
generateUUID.URL = URL;
|
|
|
|
|
return generateUUID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 5122:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _rng = _interopRequireDefault(__nccwpck_require__(807));
|
|
|
|
|
|
|
|
|
|
var _stringify = _interopRequireDefault(__nccwpck_require__(8950));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
function v4(options, buf, offset) {
|
|
|
|
|
options = options || {};
|
|
|
|
|
|
|
|
|
|
const rnds = options.random || (options.rng || _rng.default)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rnds[6] = rnds[6] & 0x0f | 0x40;
|
|
|
|
|
rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided
|
|
|
|
|
|
|
|
|
|
if (buf) {
|
|
|
|
|
offset = offset || 0;
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < 16; ++i) {
|
|
|
|
|
buf[offset + i] = rnds[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (0, _stringify.default)(rnds);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = v4;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 9120:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _v = _interopRequireDefault(__nccwpck_require__(5998));
|
|
|
|
|
|
|
|
|
|
var _sha = _interopRequireDefault(__nccwpck_require__(5274));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
const v5 = (0, _v.default)('v5', 0x50, _sha.default);
|
|
|
|
|
var _default = v5;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 6900:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _regex = _interopRequireDefault(__nccwpck_require__(814));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
function validate(uuid) {
|
|
|
|
|
return typeof uuid === 'string' && _regex.default.test(uuid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = validate;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 1595:
|
|
|
|
|
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", ({
|
|
|
|
|
value: true
|
|
|
|
|
}));
|
|
|
|
|
exports["default"] = void 0;
|
|
|
|
|
|
|
|
|
|
var _validate = _interopRequireDefault(__nccwpck_require__(6900));
|
|
|
|
|
|
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
|
|
|
|
|
|
function version(uuid) {
|
|
|
|
|
if (!(0, _validate.default)(uuid)) {
|
|
|
|
|
throw TypeError('Invalid UUID');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return parseInt(uuid.substr(14, 1), 16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var _default = version;
|
|
|
|
|
exports["default"] = _default;
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 9432:
|
|
|
|
|
@@ -15599,7 +14873,7 @@ module.exports = function removeTrailingSlash(str) {
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 4770:
|
|
|
|
|
/***/ 6310:
|
|
|
|
|
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
|
|
|
|
|
|
|
|
const core = __nccwpck_require__(2186)
|
|
|
|
|
@@ -15607,8 +14881,10 @@ const { ConfigParser } = __nccwpck_require__(8395)
|
|
|
|
|
const removeTrailingSlash = __nccwpck_require__(9255)
|
|
|
|
|
|
|
|
|
|
// Return the settings to be passed to a {ConfigParser} for a given static site generator,
|
|
|
|
|
// optional configuration file path, and a Pages path value to inject
|
|
|
|
|
function getConfigParserSettings({ staticSiteGenerator, generatorConfigFile, path }) {
|
|
|
|
|
// optional configuration file path, and a Pages siteUrl value to inject
|
|
|
|
|
function getConfigParserSettings({ staticSiteGenerator, generatorConfigFile, siteUrl }) {
|
|
|
|
|
let { pathname, origin } = siteUrl
|
|
|
|
|
|
|
|
|
|
switch (staticSiteGenerator) {
|
|
|
|
|
case 'nuxt':
|
|
|
|
|
return {
|
|
|
|
|
@@ -15616,7 +14892,7 @@ function getConfigParserSettings({ staticSiteGenerator, generatorConfigFile, pat
|
|
|
|
|
blankConfigurationFile: __nccwpck_require__.ab + "nuxt.js",
|
|
|
|
|
properties: {
|
|
|
|
|
// Configure a base path on the router
|
|
|
|
|
'router.base': path,
|
|
|
|
|
'router.base': pathname,
|
|
|
|
|
|
|
|
|
|
// Set the target to static too
|
|
|
|
|
// https://nuxtjs.org/docs/configuration-glossary/configuration-target/
|
|
|
|
|
@@ -15625,14 +14901,14 @@ function getConfigParserSettings({ staticSiteGenerator, generatorConfigFile, pat
|
|
|
|
|
}
|
|
|
|
|
case 'next':
|
|
|
|
|
// Next does not want a trailing slash
|
|
|
|
|
path = removeTrailingSlash(path)
|
|
|
|
|
pathname = removeTrailingSlash(pathname)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
configurationFile: generatorConfigFile || './next.config.js',
|
|
|
|
|
blankConfigurationFile: __nccwpck_require__.ab + "next.js",
|
|
|
|
|
properties: {
|
|
|
|
|
// Configure a base path
|
|
|
|
|
basePath: path,
|
|
|
|
|
basePath: pathname,
|
|
|
|
|
|
|
|
|
|
// Disable server side image optimization too
|
|
|
|
|
// https://nextjs.org/docs/api-reference/next/image#unoptimized
|
|
|
|
|
@@ -15645,19 +14921,23 @@ function getConfigParserSettings({ staticSiteGenerator, generatorConfigFile, pat
|
|
|
|
|
blankConfigurationFile: __nccwpck_require__.ab + "gatsby.js",
|
|
|
|
|
properties: {
|
|
|
|
|
// Configure a path prefix
|
|
|
|
|
pathPrefix: path
|
|
|
|
|
pathPrefix: pathname,
|
|
|
|
|
// Configure a site url
|
|
|
|
|
'siteMetadata.siteUrl': origin
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
case 'sveltekit':
|
|
|
|
|
// SvelteKit does not want a trailing slash
|
|
|
|
|
path = removeTrailingSlash(path)
|
|
|
|
|
pathname = removeTrailingSlash(pathname)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
configurationFile: generatorConfigFile || './svelte.config.js',
|
|
|
|
|
blankConfigurationFile: __nccwpck_require__.ab + "sveltekit.js",
|
|
|
|
|
properties: {
|
|
|
|
|
// Configure a base path
|
|
|
|
|
'kit.paths.base': path
|
|
|
|
|
'kit.paths.base': pathname,
|
|
|
|
|
// Configure a prerender origin
|
|
|
|
|
'kit.prerender.origin': origin
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
@@ -15666,10 +14946,10 @@ function getConfigParserSettings({ staticSiteGenerator, generatorConfigFile, pat
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Inject Pages configuration in a given static site generator's configuration file
|
|
|
|
|
function setPagesPath({ staticSiteGenerator, generatorConfigFile, path }) {
|
|
|
|
|
function setPagesConfig({ staticSiteGenerator, generatorConfigFile, siteUrl }) {
|
|
|
|
|
try {
|
|
|
|
|
// Parse the configuration file and try to inject the Pages configuration in it
|
|
|
|
|
const settings = getConfigParserSettings({ staticSiteGenerator, generatorConfigFile, path })
|
|
|
|
|
const settings = getConfigParserSettings({ staticSiteGenerator, generatorConfigFile, siteUrl })
|
|
|
|
|
new ConfigParser(settings).injectAll()
|
|
|
|
|
} catch (error) {
|
|
|
|
|
// Logging
|
|
|
|
|
@@ -15680,7 +14960,7 @@ function setPagesPath({ staticSiteGenerator, generatorConfigFile, path }) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = { getConfigParserSettings, setPagesPath }
|
|
|
|
|
module.exports = { getConfigParserSettings, setPagesConfig }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
@@ -15693,14 +14973,6 @@ module.exports = require("assert");
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 6113:
|
|
|
|
|
/***/ ((module) => {
|
|
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
module.exports = require("crypto");
|
|
|
|
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
|
|
|
|
/***/ 2361:
|
|
|
|
|
/***/ ((module) => {
|
|
|
|
|
|
|
|
|
|
@@ -17175,7 +16447,7 @@ const core = __nccwpck_require__(2186)
|
|
|
|
|
const { getContext } = __nccwpck_require__(1319)
|
|
|
|
|
|
|
|
|
|
const { findOrCreatePagesSite } = __nccwpck_require__(9432)
|
|
|
|
|
const { setPagesPath } = __nccwpck_require__(4770)
|
|
|
|
|
const { setPagesConfig } = __nccwpck_require__(6310)
|
|
|
|
|
const outputPagesBaseUrl = __nccwpck_require__(7527)
|
|
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
|
@@ -17186,7 +16458,7 @@ async function main() {
|
|
|
|
|
const siteUrl = new URL(pageObject.html_url)
|
|
|
|
|
|
|
|
|
|
if (staticSiteGenerator) {
|
|
|
|
|
setPagesPath({ staticSiteGenerator, generatorConfigFile, path: siteUrl.pathname })
|
|
|
|
|
setPagesConfig({ staticSiteGenerator, generatorConfigFile, siteUrl })
|
|
|
|
|
}
|
|
|
|
|
outputPagesBaseUrl(siteUrl)
|
|
|
|
|
core.exportVariable('GITHUB_PAGES', 'true')
|
|
|
|
|
|