Skip to content

Commit aedaa49

Browse files
committed
ci: clone recursively before creating sdist
otherwise we miss the skia source files Fixes #40
1 parent c5ed7c4 commit aedaa49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,16 @@ jobs:
8383
runs-on: ubuntu-latest
8484
steps:
8585
- uses: actions/checkout@v2
86+
with:
87+
submodules: recursive
8688
- name: Set up Python
8789
uses: actions/setup-python@v2
8890
with:
8991
python-version: "3.x"
9092
- name: Install dependencies
9193
run: |
9294
python -m pip install --upgrade pip
93-
pip install setuptools wheel twine
95+
pip install --upgrade setuptools wheel twine
9496
- name: Download artifacts from build jobs
9597
uses: actions/download-artifact@v2
9698
with:

0 commit comments

Comments
 (0)