mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-05 09:29:42 +01:00
44 lines
1.0 KiB
YAML
44 lines
1.0 KiB
YAML
name: Publish Release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
pylint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.7'
|
|
- name: Set up Python environment
|
|
run: |
|
|
pip3 install -e .
|
|
pip3 install -r requirements_test.txt
|
|
|
|
- run: pylint aioesphomeapi
|
|
|
|
deploy-pypi:
|
|
name: Build and publish to PyPi
|
|
runs-on: ubuntu-latest
|
|
needs: [pylint]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: '3.x'
|
|
- name: Set up python environment
|
|
run: |
|
|
pip3 install -e .
|
|
pip3 install setuptools wheel twine
|
|
- name: Build
|
|
run: python setup.py sdist bdist_wheel
|
|
- name: Upload
|
|
env:
|
|
TWINE_USERNAME: __token__
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
|
run: twine upload dist/*
|