Skip to content

Commit 2750431

Browse files
committed
Allowing white-space characters in environment variables (#14)
1 parent 5dad25e commit 2750431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const run = async () => {
3838
let gitHubEnvironmentVariables = '';
3939
for (let key in process.env){
4040
if (key.toUpperCase().startsWith("GITHUB_") && key.toUpperCase() !== 'GITHUB_WORKSPACE' && process.env[key]){
41-
gitHubEnvironmentVariables += ` -e ${key}=${process.env[key]} `;
41+
gitHubEnvironmentVariables += ` -e "${key}=${process.env[key]}" `;
4242
}
4343
}
4444
/*

0 commit comments

Comments
 (0)