ryanzidago
I use GitHub Actions to run tests every time I commit.
I have an application that uses a private repo on GitHub as a dependency.
My mix.exs file looks like this:
{:private_dependency, git: "git@github.com:ORGANIZATION/private_dependency.git"}, ref: "sha_of_working_commit_on_my_private_dependency_repo"}
However, GitHub Actions fails to fetch this particular dependency:
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
** (Mix) Command "git --git-dir=.git fetch --force --quiet --progress" failed
##[error]Process completed with exit code 1.
How to fetch a private dependency on GitHub Actions?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
Add a private SSH key to the action that has read only access to the private repository.
ryanzidago
How though?
I’ve been looking for how to add an SSH key to GitHub Actions, stumbled onto this blogpost which refers to this action.
ssh-keygen -t ed25519 -a 100 -f /path/to/filesecretconfiguration of each repository on GitHubdeploy_keyconfiguration of the repository where I ran GitHub Actionswebfactory/ssh-agentaction.However, I still get the following error message:
NobbZ
I have no clue how to do this in GHA, but for GitLab CI I usually have the private key as a variable, which I put into an
ssh-agentsession.Roughly:
I’m not sure though how exactly GHA and secrets work, therefore you might need to adjust this to GHA.
The public part of that key has to be added to that private repository. Usually it is added as a read only deploy key.
mpraski
In Github Actions you may want to set the
GITHUB_TOKENvariable in the step where you pull the repos:You will need to generate a token with valid claims for this private repo and include it in your repo’s secrets. Notice how git is being configured to always include your token in the URL (
https://${GITHUB_TOKEN}:x-oauth-basic@github.com) instead of just callinghttps://github.com/. Hopefully this configuration will suffice, but you’ll have to test it out.Read more on the token here: Use GITHUB_TOKEN for authentication in workflows - GitHub Docs.
ryanzidago
I finally got it working.
In my
mix.exsfile, I fetched the private dependency with SSH. Then I updated my workflow definition file with thewebfactory/ssh-agentaction; followed the steps in the README and added a deploy_key to the private dependency that GHA was trying to fetch.More here: What is the proper private key format? · Issue #31 · webfactory/ssh-agent · GitHub
mpraski
Ah nice, good to know there’s more than one way to fetch private repos in GA.
I would probably still opt for the token way, no need to maintain deployment keys in the projects, just the secrets.
Yegair
Thanks for the tip, I had the additional problem, that my build runs mostly inside a Dockerfile, so I had to add an SSH mount as well. Maybe it helps someone:
Then in the GitHub Actions workflow