This commit is contained in:
Shakar 2023-09-17 14:40:03 +03:00
parent 2e5e9bbd3e
commit 617ad417b7
No known key found for this signature in database
GPG Key ID: DA55A26823AE3C28

View File

@ -2,9 +2,11 @@ const core = require('@actions/core')
const github = require('@actions/github')
const fs = require('fs')
const xml2js = require('xml2js')
try {
console.log(`CWD: ${process.cwd()}`)
const label = core.getInput('label');
const filePath = `../../${core.getInput('filePath')}`;
const filePath = `${process.cwd()}/${core.getInput('filePath')}`;
console.log(`Label: ${label}`)
console.log(`File path: ${filePath}`)