From c5f8ad99185f9ea5efe9fadcae15d1146b1eb59a Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Sat, 31 Aug 2024 09:51:30 -0400 Subject: [PATCH] Revert "Remove checkout step from matrix (shouldn't be needed?)" This reverts commit 385ef5c832fafcc97ed6040a9662c86bb934e76f. --- .github/workflows/ci-build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 607336d3..a9e44dce 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -126,7 +126,12 @@ jobs: echo "short_name=$short_name" >> "$GITHUB_OUTPUT" echo "canonical_id=$short_name-py${{ matrix.python-version }}-${{ matrix.architecture}}" >> "$GITHUB_OUTPUT" - - name: Download CI source artifact + - name: Checkout repo + uses: actions/checkout@v4 + with: + submodules: 'recursive' + + - name: download CI source artifact uses: actions/download-artifact@v4 with: name: wxPython-source