Skip to content

Commit e8a6e46

Browse files
committed
Fix issues
1 parent 25c4192 commit e8a6e46

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/workflow.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
python -m pip install --upgrade pip
3737
pip install -r requirements.txt
3838
39-
# Step 5: Install build
40-
- name: Install build
39+
# Step 5: Install build tools
40+
- name: Install build tools
4141
run: |
42-
python -m pip install --upgrade build
42+
python -m pip install --upgrade build hatchling
4343
4444
# Step 6: Build distribution files
4545
- name: Build distribution
@@ -55,6 +55,6 @@ jobs:
5555
- name: Upload
5656
env:
5757
TWINE_USERNAME: ${{ secrets.USERNAME }}
58-
TWINE_PASSWORD: ${{ secrets.API_KEY }}
58+
TWINE_PASSWORD: ${{ secrets.API_TOKEN }}
5959
run: |
60-
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
60+
twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[build-system]
22
requires = ["hatchling"]
33
build-backend = "hatchling.build"
4+
45
[tool.hatch.build.targets.wheel]
5-
packages=["faces"]
6+
packages = ["faces"]
7+
68
[project]
79
name = "faces-PyJs"
8-
version = "0.0.8"
10+
version = "0.0.9"
911
description = "Lets you have super useful security."
1012
readme = "README.md"
1113
requires-python = ">=3.11.9"
@@ -14,6 +16,7 @@ classifiers = [
1416
"License :: OSI Approved :: MIT License",
1517
"Operating System :: OS Independent",
1618
]
19+
1720
[project.urls]
1821
"Homepage" = "https://github.com/htmlcoder1562/faces-PyJs"
1922
"Issues" = "https://github.com/htmlcoder1562/faces-PyJs/issues"

0 commit comments

Comments
 (0)