-
Notifications
You must be signed in to change notification settings - Fork 18
40 lines (32 loc) · 857 Bytes
/
publish.yml
File metadata and controls
40 lines (32 loc) · 857 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: 🚀 Upload Python Package
permissions:
contents: read
on:
workflow_dispatch:
workflow_call:
jobs:
deploy:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install Poetry
run: |
pipx install poetry
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{matrix.python-version}}
cache: 'poetry'
- name: Check pyproject.toml validity
run: poetry check --no-interaction
- name: Install deps
run: poetry install --no-interaction
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: |
poetry publish --build