extractions / setup-crate

📦 GitHub Action to install a Rust crate from a GitHub release
Apache License 2.0
13 stars 1 forks source link

How to install multiple crates? #3

Closed Jarmos-san closed 1 year ago

Jarmos-san commented 1 year ago

I would like to install both mdbook & the mdbook-mermaid plugin crates. Is it possible to install both of these together using this Action?

rossmacarthur commented 1 year ago

No, currently you have to run the action twice

- uses: extractions/setup-crate@v1
  with:
    owner: rust-lang
    name: mdBook

- uses: extractions/setup-crate@v1
  with:
    owner: badboy
    name: mdbook-mermaid
Jarmos-san commented 1 year ago

Alright thanks for clarifying, that answers my question so I'm closing this thread. But is there any plan to support this feature in a future release? Or is it technically impossible to implement?