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.
2 parents d8db76f + f049afe commit 760c51bCopy full SHA for 760c51b
.github/workflows/pypi.yaml
@@ -0,0 +1,32 @@
1
+name: pypi
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - v*
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-python@v4
14
+ with:
15
+ python-version: '3.10'
16
+ - run: python -m pip install --upgrade setuptools pip 'tox<4' virtualenv
17
+ - run: tox -e py310
18
+ pypi:
19
+ needs: test
20
21
+ environment:
22
+ name: pypi
23
+ url: https://pypi.org/p/bravado-core
24
+ permissions:
25
+ id-token: write
26
27
28
29
30
31
+ - run: python setup.py sdist
32
+ - uses: pypa/gh-action-pypi-publish@v1.8.10
0 commit comments