-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 813 Bytes
/
package.yml
File metadata and controls
40 lines (32 loc) · 813 Bytes
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
name: Build Python package
on:
release:
types:
- published
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.14
uses: actions/setup-python@v2
with:
python-version: 3.14
- name: Install deps
run: |
python -m pip install --upgrade pip setuptools
pip install poetry
- name: Test install
run: |
poetry install --all-extras
- name: Build python package
run: |
poetry build
- name: Publish python package
if: github.event_name == 'release'
run: |
poetry publish
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}