Skip to content

Commit

Permalink
ci: fix publishing action
Browse files Browse the repository at this point in the history
  • Loading branch information
mik3y committed Dec 14, 2022
1 parent 1105c73 commit 2425a18
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Build package
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ build/
dist/
.vscode/
.DS_Store
*.egg-info
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
from setuptools import setup

setup()
setup(
name="django-spicy-id",
packages=["django_spicy_id"],
package_dir={"django_spicy_id": "django_spicy_id"},
)

0 comments on commit 2425a18

Please sign in to comment.