Skip to content

Add method for fetching item persistence data (#30) (#32) #19

Add method for fetching item persistence data (#30) (#32)

Add method for fetching item persistence data (#30) (#32) #19

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip build twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.python_openhab_github_deploy }}
run: |
python -m build
twine upload dist/*