mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2025-01-05 18:59:11 +00:00
no-trust-check -> trust-check
This commit is contained in:
parent
916722ed67
commit
84ba66a7b5
1 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ runs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Setup trusts
|
- name: Setup trusts
|
||||||
if: inputs.trust-check == 'false'
|
if: inputs.trust-check == 'true'
|
||||||
run: |
|
run: |
|
||||||
for name in ${{ inputs.trusts }}; do
|
for name in ${{ inputs.trusts }}; do
|
||||||
aftman trust $name
|
aftman trust $name
|
||||||
|
@ -64,7 +64,7 @@ runs:
|
||||||
- name: Install tools
|
- name: Install tools
|
||||||
run: |
|
run: |
|
||||||
cd ${{ inputs.path }}
|
cd ${{ inputs.path }}
|
||||||
if [ ${{ inputs.trust-check }} == true ]; then
|
if [ ${{ inputs.trust-check }} == false ]; then
|
||||||
aftman install --trust-check
|
aftman install --trust-check
|
||||||
else
|
else
|
||||||
aftman install
|
aftman install
|
||||||
|
|
Loading…
Reference in a new issue