We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d471a commit 623851aCopy full SHA for 623851a
src/main.ts
@@ -38,7 +38,7 @@ const run = async () => {
38
let gitHubEnvironmentVariables = '';
39
for (let key in process.env){
40
if (key.toUpperCase().startsWith("GITHUB_") && key.toUpperCase() !== 'GITHUB_WORKSPACE' && process.env[key]){
41
- gitHubEnvironmentVariables += ` -e ${key}=${process.env[key]} `;
+ gitHubEnvironmentVariables += ` -e "${key}=${process.env[key]}" `;
42
}
43
44
/*
0 commit comments