Skip to content

Commit 3c8c8ba

Browse files
committed
logging to see what the process.env vars are #sigh
1 parent 83b43f9 commit 3c8c8ba

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ var encodedString = core.getInput('encodedString');
6363
// most @actions toolkit packages have async methods
6464
async function run() {
6565
try {
66+
console.log(process.env);
6667
const tempFile = Buffer.from(encodedString, 'base64');
6768

6869
if (tempFile.length == 0)

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ var encodedString = core.getInput('encodedString');
88
// most @actions toolkit packages have async methods
99
async function run() {
1010
try {
11+
console.log(process.env);
1112
const tempFile = Buffer.from(encodedString, 'base64');
1213

1314
if (tempFile.length == 0)

0 commit comments

Comments
 (0)