Skip to content

Commit

Permalink
logging to see what the process.env vars are #sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer committed Dec 15, 2019
1 parent 83b43f9 commit 3c8c8ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ var encodedString = core.getInput('encodedString');
// most @actions toolkit packages have async methods
async function run() {
try {
console.log(process.env);
const tempFile = Buffer.from(encodedString, 'base64');

if (tempFile.length == 0)
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ var encodedString = core.getInput('encodedString');
// most @actions toolkit packages have async methods
async function run() {
try {
console.log(process.env);
const tempFile = Buffer.from(encodedString, 'base64');

if (tempFile.length == 0)
Expand Down

0 comments on commit 3c8c8ba

Please sign in to comment.