From 4bb6d40a53fd081dc09b05a99bd9acf6570b33db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= Date: Mon, 26 Jun 2023 12:49:49 -0400 Subject: [PATCH] Update dev workflow to checkout the code and submodules first --- .github/workflows/dev.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index bfbdef9c6..072d63da8 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -7,6 +7,11 @@ on: branches: [dev] jobs: + steps: + - name: Checkout repository and submodules + uses: actions/checkout@v2 + with: + submodules: recursive # Containers build-containers: @@ -93,4 +98,4 @@ jobs: RELEASE: dev secrets: PRIVATE_REGISTRY: ${{ secrets.PRIVATE_REGISTRY }} - PRIVATE_REGISTRY_TOKEN: ${{ secrets.PRIVATE_REGISTRY_TOKEN }} \ No newline at end of file + PRIVATE_REGISTRY_TOKEN: ${{ secrets.PRIVATE_REGISTRY_TOKEN }}