-
Notifications
You must be signed in to change notification settings - Fork 164
41 lines (39 loc) · 1.15 KB
/
pypi.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
name: Release pypi wheels
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
pypi-publish:
name: Build package wheel and upload to pypi
runs-on: ubuntu-latest
# Specifying a GitHub environment is optional, but strongly encouraged
environment: release
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Build a binary wheel and a source tarball
run: |
pip install wheel
python setup.py sdist bdist_wheel
# - name: Store the distribution packages
# uses: actions/upload-artifact@v3
# with:
# name: python-package-distributions
# path: dist/
# - name: Download all the dists
# uses: actions/download-artifact@v3
# with:
# name: python-package-distributions
# path: dist/
- name: Publish package distributions to pypi
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/