We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46bd9bc commit 679bfcaCopy full SHA for 679bfca
action.js
@@ -24,7 +24,7 @@ const replaceEnvVars = (str) => {
24
let found = false;
25
26
readInterface.on("line", (line) => {
27
- if (!found) found = line == "set -a";
+ if (!found) found = line.trim() == "set -a";
28
if (!found) return;
29
const match = line.match(/^([^=]+)=(.*)$/);
30
if (match) {
0 commit comments