3
0
Fork 0
mirror of https://github.com/dtolnay/install.git synced 2024-11-22 08:29:30 +01:00
This commit is contained in:
David Tolnay 2022-12-02 15:02:53 -08:00
parent 397358d64b
commit acadef698e
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -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=reindeer" >> $GITHUB_OUTPUT
echo "bin=reindeer" >> $GITHUB_OUTPUT
shell: bash
id: inputs
- name: Determine cargo bin directory