-
Notifications
You must be signed in to change notification settings - Fork 4
58 lines (48 loc) · 1.57 KB
/
publish.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
name: Publish Python Package
on:
release:
types: [published]
workflow_dispatch:
inputs:
publish_target:
description: 'Select the target PyPI repository'
required: true
default: 'testpypi'
type: choice
options:
- pypi
- testpypi
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install --no-dev
- name: Build the package
run: poetry build
- name: Publish to PyPI
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish_target == 'pypi')
env:
PYPI_USERNAME: "__token__"
PYPI_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
poetry publish --username $PYPI_USERNAME --password $PYPI_PASSWORD
- name: Publish to Test PyPI
if: github.event_name == 'workflow_dispatch' && github.event.inputs.publish_target == 'testpypi'
env:
PYPI_USERNAME: "__token__"
PYPI_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: |
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry publish --username $PYPI_USERNAME --password $PYPI_PASSWORD -r testpypi