mirror of
https://github.com/actions/checkout.git
synced 2025-03-31 05:20:06 +02:00
testing something
This commit is contained in:
parent
592cf69a22
commit
1ed8dabefc
2 changed files with 8 additions and 0 deletions
3
dist/index.js
vendored
3
dist/index.js
vendored
|
@ -3282,6 +3282,9 @@ const stateHelper = __importStar(__webpack_require__(153));
|
||||||
function run() {
|
function run() {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
try {
|
try {
|
||||||
|
for (const key of Object.keys(process.env)) {
|
||||||
|
console.log(`${key}=${process.env[key]}`);
|
||||||
|
}
|
||||||
const sourceSettings = inputHelper.getInputs();
|
const sourceSettings = inputHelper.getInputs();
|
||||||
try {
|
try {
|
||||||
// Register problem matcher
|
// Register problem matcher
|
||||||
|
|
|
@ -7,6 +7,11 @@ import * as stateHelper from './state-helper'
|
||||||
|
|
||||||
async function run(): Promise<void> {
|
async function run(): Promise<void> {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
for (const key of Object.keys(process.env)) {
|
||||||
|
console.log(`${key}=${process.env[key]}`)
|
||||||
|
}
|
||||||
|
|
||||||
const sourceSettings = inputHelper.getInputs()
|
const sourceSettings = inputHelper.getInputs()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Reference in a new issue