Skip to content

Commit b0761d7

Browse files
committed
Compile dist/
1 parent ce74503 commit b0761d7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dist/main/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ switch (platform) {
5151
const baseCacheKey = `setup-bazel-${cacheVersion}-${cachePrefix}`
5252
const bazelrc = core.getMultilineInput('bazelrc')
5353

54-
const diskCacheEnabled = core.getInput('disk-cache')
54+
const diskCacheEnabled = core.getBooleanInput('disk-cache')
5555
const maxDiskCacheSize = core.getInput('max-disk-cache-size')
5656
if (diskCacheEnabled) {
5757
bazelrc.push(`common --disk_cache=${bazelDisk}`)
5858
}
5959

60-
const repositoryCacheEnabled = core.getInput('repository-cache')
60+
const repositoryCacheEnabled = core.getBooleanInput('repository-cache')
6161
const maxRepositoryCacheSize = core.getInput('max-repository-cache-size')
6262
if (repositoryCacheEnabled) {
6363
bazelrc.push(`common --repository_cache=${bazelRepository}`)

dist/main/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/post/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ switch (platform) {
5151
const baseCacheKey = `setup-bazel-${cacheVersion}-${cachePrefix}`
5252
const bazelrc = core.getMultilineInput('bazelrc')
5353

54-
const diskCacheEnabled = core.getInput('disk-cache')
54+
const diskCacheEnabled = core.getBooleanInput('disk-cache')
5555
const maxDiskCacheSize = core.getInput('max-disk-cache-size')
5656
if (diskCacheEnabled) {
5757
bazelrc.push(`common --disk_cache=${bazelDisk}`)
5858
}
5959

60-
const repositoryCacheEnabled = core.getInput('repository-cache')
60+
const repositoryCacheEnabled = core.getBooleanInput('repository-cache')
6161
const maxRepositoryCacheSize = core.getInput('max-repository-cache-size')
6262
if (repositoryCacheEnabled) {
6363
bazelrc.push(`common --repository_cache=${bazelRepository}`)

dist/post/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)