Merge pull request #6 from phips28/PACKAGEJSON_DIR
custom PACKAGEJSON_DIR
This commit is contained in:
commit
17c35281d6
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