Hacker News new | ask | show | jobs
by bketelsen 47 days ago
nice! I built one of these too and the thing that made it most useful was a GitHub action that other repos could use. You should put that on your backlog.
1 comments

I tried initially making it an action itslef, but turns out there's not much to abstract into such action. Installing binary is not as smooth as running scripting languages, compiling Rust binary every time is long and wasteful. Just copy-paste a workflow file is easier and more flexible. For example: https://github.com/olegantonyan/bruno/blob/main/.github/work... Maybe I missed something here