[FEATURE] Post step for cleaning up the SSH agent

* add `cleanup.js` for stopping the ssh-agent after the job is done
* add `scripts/build.js` to make it easier to build the files in `dist/`
* update README
* remove meaningless dependency `child_process` (its a node core package)
* update `@actions/core` to `^1.2.4`
This commit is contained in:
Thorben Nissen 2020-05-15 09:42:03 +02:00
parent 8f59108fe4
commit b05960c6f2
7 changed files with 387 additions and 13 deletions

View file

@ -130,7 +130,7 @@ As a note to my future self, in order to work on this repo:
* Run `npm install` to fetch dependencies
* _hack hack hack_
* `node index.js`. Inputs are passed through `INPUT_` env vars with their names uppercased. Use `env "INPUT_SSH-PRIVATE-KEY=\`cat file\`" node index.js` for this action.
* Run `./node_modules/.bin/ncc build index.js` to update `dist/index.js`, which is the file actually run
* Run `npm run build` to update `dist/*`, which is the file actually run
* Read https://help.github.com/en/articles/creating-a-javascript-action if unsure.
* Maybe update the README example when publishing a new version.