custom PACKAGEJSON_DIR
This commit is contained in:
parent
eb79e714a2
commit
605400761d
5
index.js
5
index.js
|
@ -1,6 +1,11 @@
|
||||||
const { Toolkit } = require('actions-toolkit')
|
const { Toolkit } = require('actions-toolkit')
|
||||||
const { execSync } = require('child_process')
|
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!
|
// Run your GitHub Action!
|
||||||
Toolkit.run(async tools => {
|
Toolkit.run(async tools => {
|
||||||
const pkg = tools.getPackageJSON()
|
const pkg = tools.getPackageJSON()
|
||||||
|
|
Loading…
Reference in New Issue