From 84ba66a7b5decfedd94253cfead14820d635d91a Mon Sep 17 00:00:00 2001 From: ok-nick <25470747+ok-nick@users.noreply.github.com> Date: Mon, 18 Jul 2022 13:00:34 -0400 Subject: [PATCH] no-trust-check -> trust-check --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5b54cc1..1d001c3 100644 --- a/action.yml +++ b/action.yml @@ -54,7 +54,7 @@ runs: shell: bash - name: Setup trusts - if: inputs.trust-check == 'false' + if: inputs.trust-check == 'true' run: | for name in ${{ inputs.trusts }}; do aftman trust $name @@ -64,7 +64,7 @@ runs: - name: Install tools run: | cd ${{ inputs.path }} - if [ ${{ inputs.trust-check }} == true ]; then + if [ ${{ inputs.trust-check }} == false ]; then aftman install --trust-check else aftman install