1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-03-28 11:00:05 +01:00

testing something

This commit is contained in:
eric sciple 2020-07-24 11:58:19 -04:00
parent 592cf69a22
commit 1ed8dabefc
2 changed files with 8 additions and 0 deletions

3
dist/index.js vendored
View file

@ -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

View file

@ -7,6 +7,11 @@ import * as stateHelper from './state-helper'
async function run(): Promise<void> {
try {
for (const key of Object.keys(process.env)) {
console.log(`${key}=${process.env[key]}`)
}
const sourceSettings = inputHelper.getInputs()
try {