If I want a new binary in the context of my Github workflow, I think I need something like:
- uses: actions/setup-node@v1
I.e. setup an environment. So in my case, I don’t need Node, but I do need a redo implementation, which is not in ubuntu-latest.
So I tried to create an action here: actions/goredo at main · kaihendry/actions · GitHub
Which basically sets up the binary. Now I want to use it on my checked out source:
The build failure makes me think that it’s trying to build within the context of Docker image which isn’t quite what I want: Need a ref Expected format {org}/{repo}[/path]@ref ... trying since I · kaihendry/prazefarm@97718d7 · GitHub
I want it to be able to access the shell and binaries of ubuntu-latest… so how do I achieve that?
Perhaps I shouldn’t be using a Dockerfile to install a binary? What should be my approach to install a binary I need in my build process?
Thank you in advance