mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-13 05:00:37 +00:00
change default path to ./
This commit is contained in:
parent
4ba44cf0da
commit
d2715e90b6
2 changed files with 2 additions and 3 deletions
|
@ -22,7 +22,7 @@ steps:
|
||||||
|`version`|`aftman` version in the form `vx.x.x`|-|
|
|`version`|`aftman` version in the form `vx.x.x`|-|
|
||||||
|`no-trust-check`|Whether to check trusts|`false`|
|
|`no-trust-check`|Whether to check trusts|`false`|
|
||||||
|`trusts`|List of trusted tools separated by spaces|-|
|
|`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`|-|
|
|`token`|Github token from `secrets.GITHUB_TOKEN`|-|
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
|
@ -15,7 +15,7 @@ inputs:
|
||||||
required: false
|
required: false
|
||||||
path:
|
path:
|
||||||
description: 'Path to the `aftman.toml` directory'
|
description: 'Path to the `aftman.toml` directory'
|
||||||
default: ''
|
default: './'
|
||||||
required: false
|
required: false
|
||||||
token:
|
token:
|
||||||
description: 'Github token from `secrets.GITHUB_TOKEN`'
|
description: 'Github token from `secrets.GITHUB_TOKEN`'
|
||||||
|
@ -67,7 +67,6 @@ runs:
|
||||||
if [ ${{ inputs.no-trust-check }} == true ]; then
|
if [ ${{ inputs.no-trust-check }} == true ]; then
|
||||||
aftman install --no-trust-check
|
aftman install --no-trust-check
|
||||||
else
|
else
|
||||||
cat ./aftman.toml
|
|
||||||
aftman install
|
aftman install
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue