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 8d93618 commit bc97d3bCopy full SHA for bc97d3b
.github/workflows/publish.yml
@@ -0,0 +1,21 @@
1
+on:
2
+ release:
3
+ types: [published]
4
+
5
+permissions:
6
+ contents: read
7
8
+jobs:
9
+ release-build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-python@v5
14
+ with:
15
+ python-version: "3.x"
16
+ - name: Build release distributions
17
+ run: |
18
+ python -m pip install build
19
+ python -m build
20
+ - name: Publish release distributions to PyPI
21
+ uses: pypa/gh-action-pypi-publish@6f7e8d9c0b1a2c3d4e5f6a7b8c9d0e1f2a3b4c5d
.github/workflows/tests.yml
@@ -17,6 +17,7 @@ jobs:
- uses: actions/setup-python@v5
with:
cache: 'pip'
- run: |
22
python -m pip install --upgrade pip
23
python -m pip install .[dev]
0 commit comments