Github actions & IDF Component Manager
Posted: Sat Jan 06, 2024 10:05 pm
I'm trying to use the espressif github actions `espressif/esp-idf-ci-action@v1` to build a project in my CI pipeline that uses the IDF Component Manager to fetch a component from a private github repo.
I made a test project with this manifest file:
idf_component.yml
because this repo is private github actions cannot fetch this code.
How can I give the IDF Component Manager running on github access to this private git repo?
Thanks!
I made a test project with this manifest file:
idf_component.yml
Code: Select all
## IDF Component Manager Manifest File
dependencies:
espressif/button: "^2.5.0"
## Required IDF version
idf:
version: ">=4.1.0"
# For components in git repository:
esp_arithmetic:
path: "./component_add"
version: "*"
git: "git@github.com:kaspernyhus/multi_component_test.git"
The authenticity of host 'github.com' can't be established.
ECDSA key fingerprint is
How can I give the IDF Component Manager running on github access to this private git repo?
Thanks!