Skip to content

Commit 9d85d5c

Browse files
committed
update deploy workflow
1 parent 3413b21 commit 9d85d5c

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy
1+
name: 🚀 Deploy
22

33
on:
44
push:
@@ -7,20 +7,21 @@ on:
77

88
jobs:
99
build-n-publish:
10+
name: ⚙️🚀 Build and publish
1011
runs-on: ubuntu-latest
1112
steps:
1213
- name: Checkout 🚚
1314
uses: actions/checkout@master
14-
- name: Set up Python 3.9
15-
uses: actions/setup-python@v1
15+
- name: Set up Python 3.13 🐍
16+
uses: actions/setup-python@v5
1617
with:
17-
python-version: 3.9
18+
python-version: 3.13
1819
- name: Install dependencies ⚙️
1920
run: |
20-
python -m pip install wheel twine
21+
python -m pip install wheel twine build
2122
- name: Build Package 📦
2223
run: |
23-
python setup.py bdist_wheel sdist
24+
python -m build
2425
- name: Publish to PyPi 🚀
2526
uses: pypa/gh-action-pypi-publish@release/v1
2627
with:

0 commit comments

Comments
 (0)