We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5702ad2 commit 27dc6ebCopy full SHA for 27dc6eb
.github/workflows/release.yaml
@@ -28,7 +28,9 @@ jobs:
28
run: python -m pip install --upgrade build
29
30
- name: Build
31
- run: python -m build
+ run: |
32
+ cp -r templates/* superduper/templates/
33
+ python -m build
34
35
# smoke-test that build is valid
36
- name: Check wheel contents
@@ -115,4 +117,4 @@ jobs:
115
117
packages-dir: artifact/
116
118
- uses: pypa/gh-action-pypi-publish@release/v1
119
with:
- packages-dir: artifact/
120
+ packages-dir: artifact/
MANIFEST.in
@@ -1,2 +1,2 @@
1
-recursive-include templates *
2
-recursive-include superduper/rest/out *
+recursive-include superduper/templates *
+recursive-include superduper/rest/out *
0 commit comments