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 76fc1bc commit 334fd8fCopy full SHA for 334fd8f
.github/workflows/publish.yml
@@ -5,7 +5,7 @@ on:
5
types: [published]
6
7
jobs:
8
- deploy:
+ build:
9
runs-on: ubuntu-22.04
10
strategy:
11
matrix:
@@ -18,7 +18,7 @@ jobs:
18
urllib3-line: "ge2"
19
steps:
20
- uses: actions/checkout@v5
21
- - name: Set up Python
+ - name: Setup Python
22
uses: actions/setup-python@v5
23
with:
24
python-version: ${{ matrix.python }}
@@ -37,6 +37,14 @@ jobs:
37
pip install -r requirements/test.txt
38
- name: Run Tox
39
run: tox -e py
40
+ release:
41
+ runs-on: ubuntu-22.04
42
+ steps:
43
+ - uses: actions/checkout@v5
44
45
+ uses: actions/setup-python@v5
46
+ with:
47
+ python-version: 3.12
48
- name: Install build dependencies
49
run: |
50
pip install setuptools wheel twine
0 commit comments