mirror of
https://github.com/ButlerLogic/action-autotag.git
synced 2024-11-10 02:11:08 +07:00
WIP
This commit is contained in:
parent
6bc8d259e7
commit
ea6dbd38cb
@ -11,14 +11,14 @@ async function run() {
|
||||
// const myInput = core.getInput('myInput')
|
||||
// core.debug(`Hello ${myInput}`)
|
||||
core.warning(process.env.INPUT_GITHUB_TOKEN)
|
||||
let dir = fs.readdirSync(path.resolve(process.env.GITHUB_WORKSPACE + '/../'), { withFileTypes: true }).map(entry => {
|
||||
let dir = fs.readdirSync(path.resolve(process.env.GITHUB_WORKSPACE), { withFileTypes: true }).map(entry => {
|
||||
return `${entry.isDirectory() ? '> ' : ' - '}${entry.name}`
|
||||
}).join('\n')
|
||||
|
||||
core.warning(` Working Directory: ${process.env.GITHUB_WORKSPACE}:\n${dir}`)
|
||||
core.warning(` Available environment variables:\n -> ${Object.keys(process.env).map(i => i + ' :: ' +process.env[i]).join('\n -> ')}`)
|
||||
|
||||
console.log(fs.readFileSync(path.join(process.env.GITHUB_WORKSPACE, '../package.json')).toString())
|
||||
console.log(fs.readFileSync(path.join(process.env.GITHUB_WORKSPACE, 'package.json')).toString())
|
||||
|
||||
core.setOutput('tag', '')
|
||||
} catch (error) {
|
||||
|
Loading…
Reference in New Issue
Block a user