From aedaa4991a4bd9c68a1bb8eb23656664dd9f16c3 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Mon, 11 Jan 2021 10:22:05 +0000 Subject: [PATCH] ci: clone recursively before creating sdist otherwise we miss the skia source files Fixes #40 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8403558..e2e62f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,6 +83,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + submodules: recursive - name: Set up Python uses: actions/setup-python@v2 with: @@ -90,7 +92,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install setuptools wheel twine + pip install --upgrade setuptools wheel twine - name: Download artifacts from build jobs uses: actions/download-artifact@v2 with: