Skip to content

Commit

Permalink
increment version to test release upload via github
Browse files Browse the repository at this point in the history
  • Loading branch information
samsinnamon committed Jan 29, 2023
1 parent 4f62c61 commit dd80a33
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
python -m pip install build
- name: Build package
run: python -m build
run: python -m build --sdist --wheel --outdir dist
- name: Publish package
run: ./publish.sh
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="airtouch4pyapi", # Replace with your own username
version="1.0.7",
version="1.0.8",
author="Sam Sinnamon",
author_email="[email protected]",
description="An api allowing control of AC state (temperature, on/off, mode) of an Airtouch 4 controller locally over TCP",
Expand Down

0 comments on commit dd80a33

Please sign in to comment.