From 9b17acd1683cc6cd4ea1835991daf15fe8e2e368 Mon Sep 17 00:00:00 2001 From: graham sanderson Date: Mon, 31 May 2021 11:23:14 -0500 Subject: [PATCH] actually fix pico-sdk checkout to checkout the right branch --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0c91bda84..09236db65 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,8 +67,7 @@ jobs: - name: Checkout pico-sdk if: matrix.family == 'rp2040' run: | - git clone --depth 1 https://github.com/raspberrypi/pico-sdk ~/pico-sdk - git checkout tinyusb-0.10.0 + git clone --depth 1 -b tinyusb-0.10.0 https://github.com/raspberrypi/pico-sdk ~/pico-sdk echo >> $GITHUB_ENV PICO_SDK_PATH=~/pico-sdk - name: Set Toolchain URL