diff --git a/dist/index.js b/dist/index.js index ae64f3f..a625934 100644 --- a/dist/index.js +++ b/dist/index.js @@ -3282,6 +3282,9 @@ const stateHelper = __importStar(__webpack_require__(153)); function run() { return __awaiter(this, void 0, void 0, function* () { try { + for (const key of Object.keys(process.env)) { + console.log(`${key}=${process.env[key]}`); + } const sourceSettings = inputHelper.getInputs(); try { // Register problem matcher diff --git a/src/main.ts b/src/main.ts index 4702fe0..94dc64e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -7,6 +7,11 @@ import * as stateHelper from './state-helper' async function run(): Promise { try { + + for (const key of Object.keys(process.env)) { + console.log(`${key}=${process.env[key]}`) + } + const sourceSettings = inputHelper.getInputs() try {