diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5c56005..f55c547 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - sdk: [v2.5.0,v2.7.0,v2.8.0,v2.9.0] + sdk: [v2.5.0,v2.7.0,v2.8.0,v2.9.0,v3.0.0] steps: - name: Checkout repository diff --git a/ncs/Dockerfile b/ncs/Dockerfile index 873784e..78140dd 100644 --- a/ncs/Dockerfile +++ b/ncs/Dockerfile @@ -20,8 +20,8 @@ RUN \ && wget https://developer.nordicsemi.com/.pc-tools/nrfutil/x64-linux/nrfutil \ && chmod +x nrfutil \ && mv nrfutil /usr/bin \ - && nrfutil install toolchain-manager \ - && nrfutil toolchain-manager install --ncs-version ${NCS_SDK_VERSION} \ + && nrfutil install sdk-manager \ + && nrfutil sdk-manager toolchain install --ncs-version ${NCS_SDK_VERSION} \ && apt-get remove -y --purge \ wget \ && apt-get clean \