cleanup in prep for v2

This commit is contained in:
Corey Butler
2023-03-30 21:07:57 -05:00
parent c3786d6170
commit 4291917c46
8 changed files with 50 additions and 29147 deletions

View File

@ -5,11 +5,11 @@ import path from 'path'
export default class Setup {
static debug () {
// Metadate for debugging
core.debug(
` Available environment variables:\n -> ${Object.keys(process.env)
.map(i => i + ' :: ' + process.env[i])
.join('\n -> ')}`
)
// core.debug(
// ` Available environment variables:\n -> ${Object.keys(process.env)
// .map(i => i + ' :: ' + process.env[i])
// .join('\n -> ')}`
// )
const dir = readdirSync(path.resolve(process.env.GITHUB_WORKSPACE), { withFileTypes: true })
.map(entry => {
@ -17,6 +17,8 @@ export default class Setup {
})
.join('\n')
console.log({dir})
core.debug(` Working Directory: ${process.env.GITHUB_WORKSPACE}:\n${dir}`)
}