mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 11:43:34 +00:00
36 lines
728 B
YAML
36 lines
728 B
YAML
name: Publish packages
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build-n-publish:
|
|
name: Build release packages
|
|
runs-on: ubuntu-latest
|
|
permissions: # for trusted publishing
|
|
id-token: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Setup python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.x"
|
|
|
|
- name: Install pypa/build
|
|
run: >-
|
|
python -m
|
|
pip install
|
|
build
|
|
--user
|
|
- name: Build a binary wheel and a source tarball
|
|
run: >-
|
|
python -m
|
|
build
|
|
--sdist
|
|
--wheel
|
|
--outdir dist/
|
|
.
|
|
- name: Publish release on pypi
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|