Skip to content

Commit

Permalink
Publish release from 4fb2880
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Feb 3, 2023
1 parent dcdf4fa commit c0e52bc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 deletions.
20 changes: 16 additions & 4 deletions action-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,31 @@ inputs:
remote-build-cache-proxy-enabled:
type: boolean
gradle-dependencies-cache-key:
type: string
type: list
separator: "\n"
list-item:
type: string
save-maven-dependencies-cache:
type: boolean
maven-local-ignore-paths:
type: string
type: list
separator: "\n"
list-item:
type: string
debug:
type: boolean
concurrent:
type: boolean
arguments:
type: string
type: list
separator: "\n"
list-item:
type: string
properties:
type: string
type: list
separator: "\n"
list-item:
type: string
gradle-build-scan-report:
type: boolean
gradle-distribution-sha-256-sum-warning:
Expand Down
16 changes: 8 additions & 8 deletions dist/cache-action-entrypoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -6004,7 +6004,7 @@
i[n] = o[n] ? function(v) {
return (p = !p) ? {
value: tslib_es6_await(o[n](v)),
done: "return" === n
done: !1
} : f ? f(v) : v;
} : f;
}
Expand Down Expand Up @@ -18424,7 +18424,7 @@
}));
}));
}(req, (function(err) {
signal && signal.aborted || destroyStream(response.body, err);
signal && signal.aborted || response && response.body && destroyStream(response.body, err);
})), parseInt(process.version.substring(1)) < 14 && req.on("socket", (function(s) {
s.addListener("close", (function(hadError) {
const hasDataListener = s.listenerCount("data") > 0;
Expand Down Expand Up @@ -34603,7 +34603,7 @@
this.j1w_1 = get_normalizedPath(this.i1w_1);
}
function gradleDependenciesCache(trigger, path, gradleDependenciesCacheKey, $cont) {
for (var tmp = listOf([ "~/.gradle/caches/modules-2/*", "!~/.gradle/caches/modules-2/gc.properties", "!~/.gradle/caches/modules-2/modules-2.lock" ]), tmp_0 = listOf([ path + "/**/*.gradle", path + "/**/*.gradle.kts", path + "/**/gradle/dependency-locking/**", path + "/**/*.properties" ]), tmp0_mapTo = ArrayList_init_$Create$_0(collectionSizeOrDefault(gradleDependenciesCacheKey, 10)), tmp0_iterator = gradleDependenciesCacheKey.c(); tmp0_iterator.d(); ) {
for (var tmp = listOf([ "~/.gradle/caches/modules-2/*", "!~/.gradle/caches/modules-2/gc.properties", "!~/.gradle/caches/modules-2/modules-2.lock" ]), tmp_0 = listOf([ path + "/**/*.gradle", path + "/**/*.gradle.kts", path + "/**/gradle/dependency-locking/**", path + "/**/*.properties", path + "/gradle/libs.versions.toml" ]), tmp0_mapTo = ArrayList_init_$Create$_0(collectionSizeOrDefault(gradleDependenciesCacheKey, 10)), tmp0_iterator = gradleDependenciesCacheKey.c(); tmp0_iterator.d(); ) {
var tmp$ret$1, tmp$ret$0, item = tmp0_iterator.e(), tmp_2 = (startsWith$default(item, "!", !1, 2, null) ? "!" : "") + path + "/**/";
tmp$ret$0 = toString(trim(isCharSequence(item) ? item : THROW_CCE())), tmp$ret$1 = tmp_2 + trimStart(tmp$ret$0, charArrayOf([ _Char___init__impl__6a9atx(33) ])),
tmp0_mapTo.a(tmp$ret$1);
Expand Down Expand Up @@ -35951,18 +35951,18 @@
}), void 0 === Math.clz32 && (Math.clz32 = (log = Math.log, LN2 = Math.LN2, function(x) {
var asUint = x >>> 0;
return 0 === asUint ? 32 : 31 - (log(asUint) / LN2 | 0) | 0;
})), void 0 === String.prototype.startsWith && Object.defineProperty(String.prototype, "startsWith", {
value: function(searchString, position) {
return position = position || 0, this.lastIndexOf(searchString, position) === position;
}
}), void 0 === String.prototype.endsWith && Object.defineProperty(String.prototype, "endsWith", {
})), void 0 === String.prototype.endsWith && Object.defineProperty(String.prototype, "endsWith", {
value: function(searchString, position) {
var subjectString = this.toString();
(void 0 === position || position > subjectString.length) && (position = subjectString.length),
position -= searchString.length;
var lastIndex = subjectString.indexOf(searchString, position);
return -1 !== lastIndex && lastIndex === position;
}
}), void 0 === String.prototype.startsWith && Object.defineProperty(String.prototype, "startsWith", {
value: function(searchString, position) {
return position = position || 0, this.lastIndexOf(searchString, position) === position;
}
}), void 0 === Math.imul && (Math.imul = function(a, b) {
return (4294901760 & a) * (65535 & b) + (65535 & a) * (0 | b) | 0;
}), __WEBPACK_AMD_DEFINE_ARRAY__ = [ exports ], void 0 === (__WEBPACK_AMD_DEFINE_RESULT__ = "function" == typeof (__WEBPACK_AMD_DEFINE_FACTORY__ = function(_) {
Expand Down
2 changes: 1 addition & 1 deletion dist/cache-action-entrypoint.js.map

Large diffs are not rendered by default.

0 comments on commit c0e52bc

Please sign in to comment.