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 cab9854 commit 60df5a0Copy full SHA for 60df5a0
.github/workflows/pre-release.yml
@@ -1,6 +1,9 @@
1
name: CD
2
on: [workflow_dispatch]
3
4
+env:
5
+ PYTHON_VERSION: 3.9
6
+
7
jobs:
8
test-pypi-deploy:
9
name: Deploy to Test PyPI
@@ -15,9 +18,9 @@ jobs:
15
18
- name: Set up Python
16
19
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
17
20
with:
- python-version: 3.9
21
+ python-version: ${{ env.PYTHON_VERSION }}
22
- name: Install dependencies
- run: pip install build
23
+ run: pip install .[build]
24
- name: Build package
25
run: python -m build
26
- name: Publish package to Test PyPI
0 commit comments