v1.11.0 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push (master) | |
on: | |
push: | |
branches: ["master"] | |
jobs: | |
deploy-pages: | |
name: Deploy to GitHub Pages | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install poetry | |
uses: Gr1N/setup-poetry@v8 | |
- name: Build package | |
run: | | |
poetry build | |
cp dist/*.whl web/ | |
mv web/*.whl web/upk2esphome.whl | |
mv web/*.whl web/upk2esphome-0.1.0-py3-none-any.whl | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: web/ | |
target-folder: / | |
force: true |