change default path to ./

This commit is contained in:
ok-nick 2022-07-18 00:24:37 -04:00
parent 4ba44cf0da
commit d2715e90b6
2 changed files with 2 additions and 3 deletions

View file

@ -22,7 +22,7 @@ steps:
|`version`|`aftman` version in the form `vx.x.x`|-|
|`no-trust-check`|Whether to check trusts|`false`|
|`trusts`|List of trusted tools separated by spaces|-|
|`path`|Path to the `aftman.toml` directory|-|
|`path`|Path to the `aftman.toml` directory|`./`|
|`token`|Github token from `secrets.GITHUB_TOKEN`|-|
## Credits

View file

@ -15,7 +15,7 @@ inputs:
required: false
path:
description: 'Path to the `aftman.toml` directory'
default: ''
default: './'
required: false
token:
description: 'Github token from `secrets.GITHUB_TOKEN`'
@ -67,7 +67,6 @@ runs:
if [ ${{ inputs.no-trust-check }} == true ]; then
aftman install --no-trust-check
else
cat ./aftman.toml
aftman install
fi