From c9932df3e40ae827d0aa284756f2ee7797e935e9 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 20 Jul 2022 14:51:07 -0700 Subject: [PATCH] Fix targets input --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index ff70d5d..b39cddc 100644 --- a/action.yml +++ b/action.yml @@ -35,7 +35,7 @@ runs: echo "::set-output name=components::$(for c in ${components//,/ }; do echo -n ' --component' $c; done)" echo "::set-output name=downgrade::${{inputs.toolchain == 'nightly' && inputs.components && ' --allow-downgrade' || ''}}" env: - targets: ${{inputs.target}} + targets: ${{inputs.targets}} target: ${{inputs.target}} components: ${{inputs.components}} shell: bash