We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1a9546 commit 3689752Copy full SHA for 3689752
index.js
@@ -513,6 +513,13 @@ async function runActionWithWitness(actionDir, witnessOptions) {
513
core.info(`Running witness command: ${commandString}`);
514
515
// Set up options for execution
516
+
517
+ //debug print env vars
518
+ console.log("Environment variables for nested action:");
519
+ console.log
520
+ for (const key in envVars) {
521
+ console.log(key + ": " + envVars[key]);
522
+ }
523
const execOptions = {
524
cwd: actionDir,
525
env: process.env,
0 commit comments