File: pypi-release.yml

package info (click to toggle)
python-pysolr 3.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: python: 2,050; sh: 166; makefile: 9
file content (38 lines) | stat: -rw-r--r-- 1,129 bytes parent folder | download
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
name: "PyPI releases"

on: release

jobs:
    build_sdist:
        name: Build Python source distribution
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v5

            - name: Build sdist
              run: pipx run build --sdist

            - uses: actions/upload-artifact@v5
              with:
                  path: dist/*.tar.gz

    pypi-publish:
        name: Upload release to PyPI
        if: github.event_name == 'release' && github.event.action == 'published'
        needs:
            - build_sdist
        runs-on: ubuntu-latest
        environment:
            name: pypi
            url: https://pypi.org/p/pysolr
        permissions:
            id-token: write
        steps:
            - uses: actions/download-artifact@v6
              with:
                  # unpacks default artifact into dist/
                  # if `name: artifact` is omitted, the action will create extra parent dir
                  name: artifact
                  path: dist
            - name: Publish package distributions to PyPI
              uses: pypa/gh-action-pypi-publish@release/v1