Use 1 instead of yes because it can be parsed (#204)
This commit is contained in:
parent
67a16b95ca
commit
78e75c3fe1
2 changed files with 2 additions and 2 deletions
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
|
@ -82948,7 +82948,7 @@ async function setEnvVars() {
|
||||||
core.exportVariable('RTX_TRUSTED_CONFIG_PATHS', path.join(process.cwd(), '.rtx.toml'));
|
core.exportVariable('RTX_TRUSTED_CONFIG_PATHS', path.join(process.cwd(), '.rtx.toml'));
|
||||||
}
|
}
|
||||||
if (!process.env['RTX_YES']) {
|
if (!process.env['RTX_YES']) {
|
||||||
core.exportVariable('RTX_YES', 'yes');
|
core.exportVariable('RTX_YES', '1');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async function restoreRTXCache() {
|
async function restoreRTXCache() {
|
||||||
|
|
|
@ -28,7 +28,7 @@ async function setEnvVars(): Promise<void> {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
if (!process.env['RTX_YES']) {
|
if (!process.env['RTX_YES']) {
|
||||||
core.exportVariable('RTX_YES', 'yes')
|
core.exportVariable('RTX_YES', '1')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue