Skip to content

Commit f98bf43

Browse files
committed
Add final to workflow.yaml
1 parent 79663d3 commit f98bf43

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/workflows/workflow.yaml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,29 @@ jobs:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
1515

1616
steps:
17-
# Step 1: Check out the repository
17+
# check out the repository
1818
- name: Checkout repository
1919
uses: actions/checkout@v4
2020

21-
# Step 2: Set up Python environment
21+
# set up Python environment
2222
- name: Set up Python
2323
uses: actions/setup-python@v4
2424
with:
2525
python-version: '3.11.x'
2626

27-
# Step 3: Install dependencies
27+
# install dependencies
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31-
pip install -r requirements.txt
31+
pip install -r requirements.txt
32+
33+
#build dist files
34+
- name: Build distribution
35+
run: |
36+
python3 setup.py sdist bdist_wheel
37+
38+
#upload
39+
- name: Upload
40+
env:
41+
TWINE_USERNAME: ${{ secrets.USERNAME }}
42+
TWINE_PASSWORD: ${{ secrets.API_KEY }}
-3.07 KB
Binary file not shown.

dist/faces_pyjs-0.0.8.tar.gz

-2.76 KB
Binary file not shown.

0 commit comments

Comments
 (0)