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 ac0ea0e commit 683db2bCopy full SHA for 683db2b
.github/workflows/build.yml
@@ -9,6 +9,7 @@ jobs:
9
build:
10
11
runs-on: ubuntu-latest
12
+ environment: default
13
strategy:
14
matrix:
15
python-version: [ "3.8", "3.10", "3.12" ]
.github/workflows/publish.yml
@@ -11,6 +11,7 @@ jobs:
publish:
+ environment: publish
16
permissions:
17
id-token: write
@@ -29,5 +30,8 @@ jobs:
29
30
- name: Install the project
31
run: uv sync --all-extras --dev
32
- - name: Publish
33
- run: uv publush
+ - name: Build package
34
+ run: uv build
35
+
36
+ - name: Publish to PyPI
37
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments