11
0
Fork 0
mirror of https://github.com/hashicorp/vault-action.git synced 2026-03-29 06:06:53 +00:00
This commit is contained in:
Attilio 2026-02-25 14:11:24 +01:00 committed by GitHub
commit bc3f625028
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -158,7 +158,10 @@ const selectAndAppendResults = async (
secretRequest,
results
) => {
if (!selector.includes(".")) {
if (selector.includes(".")) {
const backtick = '`';
selector = backtick.concat(selector, backtick);
} else {
selector = '"' + selector + '"';
}
selector = "data." + selector;