2023-09-16 23:21:49 +03:00
|
|
|
# nrf-connect-sdk-ci
|
|
|
|
Build NRF Connect SDK projects
|
2023-09-16 23:25:10 +03:00
|
|
|
|
|
|
|
## Usage example:
|
|
|
|
|
|
|
|
```
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
uses: embedd-actions/nrf-connect-sdk-ci@v2.3.0
|
|
|
|
with:
|
|
|
|
board: nrf52833dk_nrf52833
|
|
|
|
build_dir: build
|
|
|
|
|
|
|
|
```
|
2023-09-19 01:02:39 +03:00
|
|
|
|
|
|
|
## How to specify a version of NRF Connect SDK
|
|
|
|
|
|
|
|
To select the specific version of NRF Connect SDK you
|
|
|
|
can reference a specific version of GitHub action:
|
|
|
|
```
|
2023-09-19 01:41:51 +03:00
|
|
|
uses: embedd-actions/nrf-connect-sdk-ci@v2.3.0
|
2023-09-20 11:34:47 +03:00
|
|
|
uses: embedd-actions/nrf-connect-sdk-ci@v2.4.0
|
2023-09-19 01:02:39 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
## List of available tags
|
|
|
|
|
|
|
|
```
|
|
|
|
v2.3.0
|
2023-09-20 11:34:47 +03:00
|
|
|
v2.4.0
|
2023-09-20 12:46:40 +03:00
|
|
|
v2.4.1
|
2023-09-19 01:02:39 +03:00
|
|
|
```
|