From 8344007ac03563eb55162b5d07c6e099999ae61b Mon Sep 17 00:00:00 2001 From: raven-worx Date: Sun, 17 Dec 2023 21:35:18 +0100 Subject: [PATCH] fixed missing checkout of submodules in release workflow --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b167101..d7633a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -93,8 +93,9 @@ jobs: needs: - build-artifacts steps: - - name: Checkout - uses: actions/checkout@v3 + - uses: actions/checkout@v3 + with: + submodules: recursive - name: Build uf2 uses: addnab/docker-run-action@v3