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 ef2edca commit adfbf28Copy full SHA for adfbf28
.github/workflows/release
@@ -1 +1,23 @@
1
-release
+name: release
2
+on:
3
+ push:
4
+ tags:
5
+ - "v*"
6
+
7
+permissions:
8
+ contents: read
9
10
+jobs:
11
+ build-and-publish:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-python@v5
16
+ with:
17
+ python-version: "3.11"
18
+ - run: python -m pip install -U pip build
19
+ - run: python -m build
20
+ - name: Publish to PyPI
21
+ uses: pypa/gh-action-pypi-publish@release/v1
22
23
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments