From c202af6de9f976c3e9e9c4fb3bf7c00fbbe4f886 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 22 Jun 2022 09:44:30 -0700 Subject: [PATCH] rustup-toolchain-install-master --- action.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/action.yml b/action.yml index c5f9710..3739be5 100644 --- a/action.yml +++ b/action.yml @@ -1,20 +1,13 @@ name: cargo install author: David Tolnay description: Fast `cargo install` action using a GitHub-based binary cache -inputs: - crate: - description: Name of crate as published to crates.io - required: true - bin: - description: Name of binary; default = same as crate name - required: false runs: using: composite steps: - name: Check inputs run: | - echo "crate=${{inputs.crate}}" >> $GITHUB_OUTPUT - echo "bin=${{inputs.bin || inputs.crate}}" >> $GITHUB_OUTPUT + echo "crate=rustup-toolchain-install-master" >> $GITHUB_OUTPUT + echo "bin=rustup-toolchain-install-master" >> $GITHUB_OUTPUT shell: bash id: inputs - name: Determine cargo bin directory