-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (50 loc) · 1.18 KB
/
publish-to-pypi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
name: publish-to-pypi
on:
workflow_run:
workflows: ["pre-commit"]
types:
- completed
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: build-pip-package
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
python-version: 3.11
- name: run pip install
run: |
pip3 install .
pip3 install ".[dep]"
build-n-publish:
needs: build
name: build-n-publish
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
python-version: 3.11
- name: Install pip packages
run: pip install twine build setuptools
- name: Build the package
run: python -m build
- name: Publish package to PyPI
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true