mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
15 lines
293 B
YAML
15 lines
293 B
YAML
name: cargo-install
|
|
description: Install a dependency from cargo
|
|
|
|
inputs:
|
|
name:
|
|
required: true
|
|
description: Name of the dependency
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install ${{ inputs.name }}
|
|
shell: bash
|
|
run: cargo binstall --no-confirm ${{ inputs.name }}
|