From 2bfd2f169a7c5630a4ba38467e18d095b833448a Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sun, 19 Mar 2023 11:03:24 -0400 Subject: [PATCH] Fix target to use the input, not a matrix --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f8c12c0..9f71433 100644 --- a/action.yml +++ b/action.yml @@ -42,7 +42,7 @@ runs: - name: Install toolchain if not cross-compiling uses: dtolnay/rust-toolchain@stable with: - targets: ${{ matrix.platform.target }} + targets: ${{ inputs.target }} toolchain: ${{ inputs.toolchain }} if: ${{ steps.determine-cross-compile.outputs.needs-cross == 'false' }} - name: Install cross if cross-compiling (*nix)