Skip to content

Commit a517ad2

Browse files
committed
wip
1 parent 679bfca commit a517ad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const stripQuotes = (str) =>
1313
const replaceEnvVars = (str) => {
1414
const value = str
1515
.replaceAll(
16-
/\$\{([a-zA-Z0-9_]+):[+-]:\$[a-zA-Z0-9_]+\}/g,
16+
/\$\{([a-zA-Z0-9_]+):\+:\$[a-zA-Z0-9_]+\}/g,
1717
(_, key) => ((v) => v ? `:${v}` : "")(process.env[key]),
1818
)
1919
.replaceAll(/\$\{([a-zA-Z0-9_]+)\}/g, (_, key) => process.env[key] ?? "")

0 commit comments

Comments
 (0)