We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3413b21 commit 9d85d5cCopy full SHA for 9d85d5c
1 file changed
.github/workflows/deploy.yml
@@ -1,4 +1,4 @@
1
-name: Deploy
+name: 🚀 Deploy
2
3
on:
4
push:
@@ -7,20 +7,21 @@ on:
7
8
jobs:
9
build-n-publish:
10
+ name: ⚙️🚀 Build and publish
11
runs-on: ubuntu-latest
12
steps:
13
- name: Checkout 🚚
14
uses: actions/checkout@master
- - name: Set up Python 3.9
15
- uses: actions/setup-python@v1
+ - name: Set up Python 3.13 🐍
16
+ uses: actions/setup-python@v5
17
with:
- python-version: 3.9
18
+ python-version: 3.13
19
- name: Install dependencies ⚙️
20
run: |
- python -m pip install wheel twine
21
+ python -m pip install wheel twine build
22
- name: Build Package 📦
23
- python setup.py bdist_wheel sdist
24
+ python -m build
25
- name: Publish to PyPi 🚀
26
uses: pypa/gh-action-pypi-publish@release/v1
27
0 commit comments