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 1656ef3 commit 03cace0Copy full SHA for 03cace0
.github/workflows/publish.yml
@@ -10,10 +10,24 @@ jobs:
10
uses: actions/checkout@v3
11
with:
12
fetch-depth: 0
13
- - run: |
14
- python -m pip install --upgrade pip
15
- python -m pip install setuptools wheel
16
- python -m pip install .
+ - name: Set up Python 3.10
+ uses: actions/setup-python@v3
+ with:
+ python-version: "3.10"
17
+ - name: Install pypa/build
18
+ run: >-
19
+ python -m
20
+ pip install
21
+ build
22
+ --user
23
+ - name: Build a binary wheel and a source tarball
24
25
26
27
+ --sdist
28
+ --wheel
29
+ --outdir dist/
30
+ .
31
- name: Publish package
32
uses: pypa/gh-action-pypi-publish@release/v1
33
0 commit comments