From d660f81968af2a555bcba350fdceb2f7d7253c13 Mon Sep 17 00:00:00 2001 From: Lukas Weidenholzer <17790923+LukeWeidenwalker@users.noreply.github.com> Date: Mon, 20 Mar 2023 13:25:27 +0100 Subject: [PATCH] ci: add recursive checkout to release pipeline (#90) add recursive checkout to release pipeline --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a37bbe7a..ec873ec2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 + with: + submodules: recursive - name: Set up Python 3.9 uses: actions/setup-python@v4