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 2dfb01f commit daba46fCopy full SHA for daba46f
.github/workflows/ci.yml
@@ -4,7 +4,7 @@ on:
4
push:
5
6
jobs:
7
- Ubuntu:
+ Run Checks:
8
name: "Ubuntu (python-${{ matrix.python }})"
9
timeout-minutes: 10
10
runs-on: "ubuntu-latest"
@@ -29,3 +29,25 @@ jobs:
29
30
- name: Run checks
31
run: make check
32
+
33
+ Upload to PyPI:
34
+ runs-on: "ubuntu-latest"
35
+ if: ${{ startsWith(github.ref, 'refs/tags/v') }}
36
+ steps:
37
+ - uses: actions/checkout@v2
38
39
+ - name: Setup python
40
+ uses: actions/setup-python@v2
41
+ with:
42
+ python-version: "3.11"
43
44
+ - name: Install pipenv
45
+ run: make get-pipenv
46
47
+ - name: Install dependencies
48
+ run: make install-deps
49
50
+ - name: Publish to PyPI
51
+ run: make upload-to-pypi
52
+ env:
53
+ PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
.github/workflows/publish.yml
0 commit comments