Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
593842144a | |||
9a6e1155f9 | |||
365a3af171 |
25
.github/workflows/release.yml
vendored
Normal file
25
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release-zip:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: ZIP Component Dir
|
||||||
|
run: |
|
||||||
|
cd ${{ github.workspace }}/custom_components/hon
|
||||||
|
zip -r haier_hon.zip ./
|
||||||
|
|
||||||
|
- name: Upload zip to release
|
||||||
|
uses: svenstaro/upload-release-action@v2
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
file: ${{ github.workspace }}/custom_components/hon/haier_hon.zip
|
||||||
|
asset_name: haier_hon.zip
|
||||||
|
tag: ${{ github.ref }}
|
||||||
|
overwrite: true
|
@ -6,6 +6,6 @@
|
|||||||
"documentation": "https://github.com/Andre0512/hon/",
|
"documentation": "https://github.com/Andre0512/hon/",
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"issue_tracker": "https://github.com/Andre0512/hon/issues",
|
"issue_tracker": "https://github.com/Andre0512/hon/issues",
|
||||||
"requirements": ["pyhOn==0.7.2"],
|
"requirements": ["pyhOn==0.7.3"],
|
||||||
"version": "0.5.0"
|
"version": "0.5.1-beta.1"
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Haier hOn",
|
"name": "Haier hOn",
|
||||||
"homeassistant": "2023.2.0"
|
"homeassistant": "2023.2.0",
|
||||||
|
"zip_release": true,
|
||||||
|
"filename": "haier_hon.zip"
|
||||||
}
|
}
|
||||||
|
6
info.md
6
info.md
@ -29,5 +29,11 @@ _If the integration is not in the list, you need to clear the browser cache._
|
|||||||
Want to help us to support more appliances? Or add more sensors? Or help with translating? Or beautify some icons or captions?
|
Want to help us to support more appliances? Or add more sensors? Or help with translating? Or beautify some icons or captions?
|
||||||
Check out the [project on GitHub](https://github.com/Andre0512/hon), every contribution is welcome!
|
Check out the [project on GitHub](https://github.com/Andre0512/hon), every contribution is welcome!
|
||||||
|
|
||||||
|
## Useful Links
|
||||||
|
|
||||||
|
* [GitHub repository](https://github.com/Andre0512/hon) (please add a star if you like this integration!)
|
||||||
|
* [pyhOn library](https://github.com/Andre0512/pyhOn)
|
||||||
|
* [Release notes](https://github.com/Andre0512/hon/releases)
|
||||||
|
* [Discussion and help](https://github.com/Andre0512/hon/discussions)
|
||||||
|
* [Issues](https://github.com/Andre0512/hon/issues)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user