summaryrefslogtreecommitdiff
path: root/.github/workflows/pypi.yml
blob: c097db67f47a432f0e9d388abe4f87387f8ebe80 (plain)
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
60
61
62
63
64
---
name: Build and upload to PyPI

permissions:
  contents: read

on:
  workflow_dispatch:
    inputs:
      tag:
        description: tag to build
        required: true
        type: string
      testpypi:
        description: upload to Test PyPI
        type: boolean
        default: false
      pypi:
        description: upload to PyPI
        type: boolean
        default: false
  push:
    branches:
      - master
      - main
      - v*.x
  pull_request:
    branches:
      - master
      - main
      - v*.x

jobs:
  pypi:
    name: Build and upload to PyPI
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
        with:
          ref: ${{ inputs.tag || github.ref }}
      - name: Set up Python 3.10
        uses: actions/setup-python@v4
        with:
          python-version: "3.10"
      - name: "Update pip"
        run: python -m pip install --upgrade pip setuptools wheel
      - name: "Install 'build' and 'twine'"
        run: python -m pip install --upgrade build twine
      - name: "Run 'build'"
        run: "python -m build"
      - name: "Run twine check"
        run: "python -m twine check dist/*"
      - name: Publish distribution to Test PyPI
        uses: pypa/gh-action-pypi-publish@master
        with:
          password: ${{ secrets.TEST_PYPI_API_TOKEN }}
          repository_url: https://test.pypi.org/legacy/
        if: inputs.testpypi || false
      - name: Publish distribution to PyPI
        uses: pypa/gh-action-pypi-publish@master
        with:
          password: ${{ secrets.PYPI_API_TOKEN }}
        if: inputs.pypi || false