Skip to content

Commit

Permalink
Fixes #66 -- include the current env when invoking the subprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Mar 22, 2020
1 parent a3a6bec commit 6fd09f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ try {
}
};

options.env = {
options.env = Object.assign(process.env, {
GITHUB_ACTION: process.env.GITHUB_ACTION,
GITHUB_RUN_ID: process.env.GITHUB_RUN_ID,
GITHUB_REF: process.env.GITHUB_REF,
Expand Down

0 comments on commit 6fd09f8

Please sign in to comment.