mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-06 12:05:48 +00:00
78148dae50
* Updates * Update * Update * Update * Update * Yarn sometimes prefers npmrc, so use same token * Description * Update readme * Feedback * Add type * new toolkit and scoped registries * npmrc in RUNNER_TEMP * Dont always auth * Try exporting blank token * Get auth working for now pending runner changes * Fix string interpolation for auth token. * Don't export both userconfigs * Update authutil.js * Add single quotes for authString * Fix the registry string. * Use userconfig and append trailing slash * Keep in root of repo * Try just adding auth token * Remove auth token * Try changes again * Add tests * Npm and GPR samples * Add types
53 lines
No EOL
1.3 KiB
Markdown
53 lines
No EOL
1.3 KiB
Markdown
# `@actions/io`
|
|
|
|
> Core functions for cli filesystem scenarios
|
|
|
|
## Usage
|
|
|
|
#### mkdir -p
|
|
|
|
Recursively make a directory. Follows rules specified in [man mkdir](https://linux.die.net/man/1/mkdir) with the `-p` option specified:
|
|
|
|
```
|
|
const io = require('@actions/io');
|
|
|
|
await io.mkdirP('path/to/make');
|
|
```
|
|
|
|
#### cp/mv
|
|
|
|
Copy or move files or folders. Follows rules specified in [man cp](https://linux.die.net/man/1/cp) and [man mv](https://linux.die.net/man/1/mv):
|
|
|
|
```
|
|
const io = require('@actions/io');
|
|
|
|
// Recursive must be true for directories
|
|
const options = { recursive: true, force: false }
|
|
|
|
await io.cp('path/to/directory', 'path/to/dest', options);
|
|
await io.mv('path/to/file', 'path/to/dest');
|
|
```
|
|
|
|
#### rm -rf
|
|
|
|
Remove a file or folder recursively. Follows rules specified in [man rm](https://linux.die.net/man/1/rm) with the `-r` and `-f` rules specified.
|
|
|
|
```
|
|
const io = require('@actions/io');
|
|
|
|
await io.rmRF('path/to/directory');
|
|
await io.rmRF('path/to/file');
|
|
```
|
|
|
|
#### which
|
|
|
|
Get the path to a tool and resolves via paths. Follows the rules specified in [man which](https://linux.die.net/man/1/which).
|
|
|
|
```
|
|
const exec = require('@actions/exec');
|
|
const io = require('@actions/io');
|
|
|
|
const pythonPath: string = await io.which('python', true)
|
|
|
|
await exec.exec(`"${pythonPath}"`, ['main.py']);
|
|
``` |