mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 07:06:56 +00:00
fix: remove case transformation in normalizeOutputKey
This commit is contained in:
parent
77efb36ae3
commit
3bed8c4c0f
2 changed files with 0 additions and 6 deletions
3
dist/index.js
vendored
3
dist/index.js
vendored
|
|
@ -14073,9 +14073,6 @@ function normalizeOutputKey(dataKey, isEnvVar = false) {
|
|||
.replace(".", "__")
|
||||
.replace(new RegExp("-", "g"), "")
|
||||
.replace(/[^\p{L}\p{N}_-]/gu, "");
|
||||
if (isEnvVar) {
|
||||
outputKey = outputKey.toUpperCase();
|
||||
}
|
||||
return outputKey;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8,9 +8,6 @@ function normalizeOutputKey(dataKey, isEnvVar = false) {
|
|||
.replace(".", "__")
|
||||
.replace(new RegExp("-", "g"), "")
|
||||
.replace(/[^\p{L}\p{N}_-]/gu, "");
|
||||
if (isEnvVar) {
|
||||
outputKey = outputKey.toUpperCase();
|
||||
}
|
||||
return outputKey;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue