custom PACKAGEJSON_DIR

This commit is contained in:
phips28 2020-01-13 15:04:50 +01:00
parent eb79e714a2
commit 605400761d
1 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,11 @@
const { Toolkit } = require('actions-toolkit')
const { execSync } = require('child_process')
// Change working directory if user defined PACKAGEJSON_DIR
if (process.env.PACKAGEJSON_DIR) {
process.chdir(`${process.env.GITHUB_WORKSPACE}/${process.env.PACKAGEJSON_DIR}`)
}
// Run your GitHub Action!
Toolkit.run(async tools => {
const pkg = tools.getPackageJSON()