Hey all,
I'm trying to install the nRF Asset tracker. I'm stuck at a step called Building the project using GitHub. I just need to know how to build the project using the GitHub repository. I'm here attaching the screenshot of the page.
Hey all,
I'm trying to install the nRF Asset tracker. I'm stuck at a step called Building the project using GitHub. I just need to know how to build the project using the GitHub repository. I'm here attaching the screenshot of the page.
Hi Kirit,
The build and release actions will be triggered once you changing the following source code files in repository as specified on the wokeflows defination file build-and-release.yaml,
push:
paths:
- "**.c"
- "**.h"
- "**.feature"
- "Kconfig"
- ".github/workflows/build-and-release.yaml"
- "Dockerfile"
- "west.yml"
- "*.conf"
On the Actions page, you can find the log file of workflow actions. It is also to trigger a workflow here manually here.

You can find more tutorials about how to use GitHub actions from the Github official documents and many tutorial videos from Youtube.
Best regards,
Charlie
Hi Kirit,
The build and release actions will be triggered once you changing the following source code files in repository as specified on the wokeflows defination file build-and-release.yaml,
push:
paths:
- "**.c"
- "**.h"
- "**.feature"
- "Kconfig"
- ".github/workflows/build-and-release.yaml"
- "Dockerfile"
- "west.yml"
- "*.conf"
On the Actions page, you can find the log file of workflow actions. It is also to trigger a workflow here manually here.

You can find more tutorials about how to use GitHub actions from the Github official documents and many tutorial videos from Youtube.
Best regards,
Charlie