Open Abhay2412 opened 3 months ago
Hi, i've just faced a similar issue and this article helped me about the setup: https://adventures.michaelfbryan.com/posts/configuring-cargo-auth-in-github-actions/
other than that since all your git strings are already starting with "ssh://..."
seems redundant
Hi, i've just faced a similar issue and this article helped me about the setup: https://adventures.michaelfbryan.com/posts/configuring-cargo-auth-in-github-actions/
other than that since all your git strings are already starting with "ssh://..."
- name: Configure git to use SSH run: | git config --global url."ssh://git@github.com/".insteadOf "https://github.com/"
seems redundant
Appreciate the feedback and your reply I think the ssh agent step works it's just for some reason Cargo.toml is not able to recognize the repos maybe some configuration settings I am missing and thanks for the article was following it.
Hello, I am trying to run a workflow to make a deb file for a Flutter project that communicates with Rust. We have some private repos that are being called in our project as dependencies.
According to the documentation this works for Windows I tried adding it to my workflow as well https://github.com/marketplace/actions/webfactory-ssh-agent#cargos-rust-private-dependencies-on-windows but I am still get an error for some reason:
The Cargo.toml file:
The error I get when the workflow gets to the step of Building the Linux distribution:
SEVERE: error: failed to get `CRATE1` as a dependency of package `app v0.1.0
I'm hoping to get some insight on what I'm doing wrong and guidance.