Skip to content

Commit

Permalink
fix(package): trying MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
itayB committed Apr 3, 2024
1 parent b75220e commit fe724df
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
- name: Create setup.py file
run: |
touch dist/__init__.py
cat <<EOT >> MANIFEST.in
include dist
EOT
cat <<EOT >> setup.py
from setuptools import setup
from pathlib import Path
Expand All @@ -50,7 +52,6 @@ jobs:
version="${{ github.ref_name }}",
package_dir={"react_app": "dist"},
package_data={"react_app": ["**/*.*"]},
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown"
)
Expand Down

0 comments on commit fe724df

Please sign in to comment.