Skip to content

Commit 1520ad7

Browse files
committed
building new version
1 parent de9445e commit 1520ad7

File tree

1 file changed

+41
-29
lines changed

1 file changed

+41
-29
lines changed

dist/index.js

+41-29
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ class ToolRunner extends events.EventEmitter {
558558
// command line parser.
559559
//
560560
// for a detailed description of the cmd.exe command line parser, refer to
561-
// https://stackoverflow.com/questions/4094699/how-does-the-windows-command-interpreter-cmd-exe-parse-scripts/7970912#7970912
561+
// http://stackoverflow.com/questions/4094699/how-does-the-windows-command-interpreter-cmd-exe-parse-scripts/7970912#7970912
562562
// need quotes for empty arg
563563
if (!arg) {
564564
return '""';
@@ -1331,11 +1331,25 @@ async function run() {
13311331
const noCache = getBooleanInput('no-cache');
13321332
const private = getBooleanInput('private');
13331333
const immutable = getBooleanInput('immutable');
1334+
13341335
const cacheControl = core.getInput('cacheControl');
13351336
const cache = core.getInput('cache') || null;
13361337
const filesToInclude = core.getInput('files-to-include') || null;
13371338

1338-
await deploy({ folder, bucket, bucketRegion, distId, invalidation, deleteRemoved, noCache, private, cache, immutable, cacheControl, filesToInclude });
1339+
await deploy({
1340+
folder,
1341+
bucket,
1342+
bucketRegion,
1343+
distId,
1344+
invalidation,
1345+
deleteRemoved,
1346+
noCache,
1347+
private,
1348+
cache,
1349+
immutable,
1350+
cacheControl,
1351+
filesToInclude,
1352+
});
13391353
} catch (error) {
13401354
core.setFailed(error.message);
13411355
}
@@ -1657,10 +1671,6 @@ function checkBypass(reqUrl) {
16571671
if (!reqUrl.hostname) {
16581672
return false;
16591673
}
1660-
const reqHost = reqUrl.hostname;
1661-
if (isLoopbackAddress(reqHost)) {
1662-
return true;
1663-
}
16641674
const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || '';
16651675
if (!noProxy) {
16661676
return false;
@@ -1686,24 +1696,13 @@ function checkBypass(reqUrl) {
16861696
.split(',')
16871697
.map(x => x.trim().toUpperCase())
16881698
.filter(x => x)) {
1689-
if (upperNoProxyItem === '*' ||
1690-
upperReqHosts.some(x => x === upperNoProxyItem ||
1691-
x.endsWith(`.${upperNoProxyItem}`) ||
1692-
(upperNoProxyItem.startsWith('.') &&
1693-
x.endsWith(`${upperNoProxyItem}`)))) {
1699+
if (upperReqHosts.some(x => x === upperNoProxyItem)) {
16941700
return true;
16951701
}
16961702
}
16971703
return false;
16981704
}
16991705
exports.checkBypass = checkBypass;
1700-
function isLoopbackAddress(host) {
1701-
const hostLower = host.toLowerCase();
1702-
return (hostLower === 'localhost' ||
1703-
hostLower.startsWith('127.') ||
1704-
hostLower.startsWith('[::1]') ||
1705-
hostLower.startsWith('[0:0:0:0:0:0:0:1]'));
1706-
}
17071706
//# sourceMappingURL=proxy.js.map
17081707

17091708
/***/ }),
@@ -1867,7 +1866,20 @@ const exec = __webpack_require__(986);
18671866

18681867
let deploy = function (params) {
18691868
return new Promise((resolve, reject) => {
1870-
const { folder, bucket, bucketRegion, distId, invalidation, deleteRemoved, noCache, private, cache, immutable, cacheControl, filesToInclude } = params;
1869+
const {
1870+
folder,
1871+
bucket,
1872+
bucketRegion,
1873+
distId,
1874+
invalidation,
1875+
deleteRemoved,
1876+
noCache,
1877+
private,
1878+
cache,
1879+
immutable,
1880+
cacheControl,
1881+
filesToInclude,
1882+
} = params;
18711883

18721884
const distIdArg = distId ? `--distId ${distId}` : '';
18731885
const invalidationArg = distId ? `--invalidate "${invalidation}"` : '';
@@ -1881,7 +1893,7 @@ let deploy = function (params) {
18811893
const immutableArg = immutable ? '--immutable' : '';
18821894
const cacheControlArg = cacheControl ? `--cacheControl ${cacheControl}` : '';
18831895
const privateArg = private ? '--private' : '';
1884-
const cacheFlag = cache ? `--cache ${cache}` : '';
1896+
const cacheFlag = cache ? `--cache ${cache}` : '';
18851897
const filesRegex = filesToInclude ? filesToInclude : '**';
18861898

18871899
try {
@@ -1891,7 +1903,7 @@ let deploy = function (params) {
18911903
--cwd ./ \
18921904
${distIdArg} \
18931905
--etag \
1894-
--gzip xml,html,htm,js,css,ttf,otf,svg,txt \
1906+
--gzip xml,html,htm,js,css,ttf,otf,txt \
18951907
${cacheFlag} \
18961908
${invalidationArg} \
18971909
${deleteRemovedArg} \
@@ -3382,7 +3394,7 @@ class Summary {
33823394
/**
33833395
* If the summary buffer is empty
33843396
*
3385-
* @returns {boolean} true if the buffer is empty
3397+
* @returns {boolen} true if the buffer is empty
33863398
*/
33873399
isEmptyBuffer() {
33883400
return this._buffer.length === 0;
@@ -3878,9 +3890,9 @@ class OidcClient {
38783890
const res = yield httpclient
38793891
.getJson(id_token_url)
38803892
.catch(error => {
3881-
throw new Error(`Failed to get ID Token. \n
3882-
Error Code : ${error.statusCode}\n
3883-
Error Message: ${error.result.message}`);
3893+
throw new Error(`Failed to get ID Token. \n
3894+
Error Code : ${error.statusCode}\n
3895+
Error Message: ${error.message}`);
38843896
});
38853897
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
38863898
if (!id_token) {
@@ -4002,7 +4014,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
40024014
// **`v1()` - Generate time-based UUID**
40034015
//
40044016
// Inspired by https://github.com/LiosK/UUID.js
4005-
// and https://docs.python.org/3/library/uuid.html
4017+
// and http://docs.python.org/library/uuid.html
40064018
let _nodeId;
40074019

40084020
let _clockseq; // Previous uuid creation time
@@ -4172,7 +4184,7 @@ function getExecOutput(commandLine, args, options) {
41724184
return __awaiter(this, void 0, void 0, function* () {
41734185
let stdout = '';
41744186
let stderr = '';
4175-
// Using string decoder covers the case where a multi-byte character is split
4187+
//Using string decoder covers the case where a mult-byte character is split
41764188
const stdoutDecoder = new string_decoder_1.StringDecoder('utf8');
41774189
const stderrDecoder = new string_decoder_1.StringDecoder('utf8');
41784190
const originalStdoutListener = (_a = options === null || options === void 0 ? void 0 : options.listeners) === null || _a === void 0 ? void 0 : _a.stdout;
@@ -4191,7 +4203,7 @@ function getExecOutput(commandLine, args, options) {
41914203
};
41924204
const listeners = Object.assign(Object.assign({}, options === null || options === void 0 ? void 0 : options.listeners), { stdout: stdOutListener, stderr: stdErrListener });
41934205
const exitCode = yield exec(commandLine, args, Object.assign(Object.assign({}, options), { listeners }));
4194-
// flush any remaining characters
4206+
//flush any remaining characters
41954207
stdout += stdoutDecoder.end();
41964208
stderr += stderrDecoder.end();
41974209
return {
@@ -4206,4 +4218,4 @@ exports.getExecOutput = getExecOutput;
42064218

42074219
/***/ })
42084220

4209-
/******/ });
4221+
/******/ });

0 commit comments

Comments
 (0)