Merge pull request #79 from schizza/chore/assets
Maintenance, adds workflow for ZIP assets in releases. Updated README to view downloaded counts.fix/wind_dir
commit
688bb9e374
|
|
@ -0,0 +1,21 @@
|
||||||
|
name: Build & Attach ZIP asset
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-zip:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Create ZIP
|
||||||
|
run: |
|
||||||
|
mkdir -p dist
|
||||||
|
cd custom_components/sws12500
|
||||||
|
zip -r ../../dist/weather-station.zip . -x "*/__pycache__/*"
|
||||||
|
|
||||||
|
- name: Upload ZIP to release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
files: dist/weather-station.zip
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
# Integrates your Sencor SWS 12500 or 16600, GARNI, BRESSER weather stations seamlessly into Home Assistant
|
# Integrates your Sencor SWS 12500 or 16600, GARNI, BRESSER weather stations seamlessly into Home Assistant
|
||||||
|
|
||||||
This integration will listen for data from your station and passes them to respective sensors. It also provides the ability to push data to Windy API.
|
This integration will listen for data from your station and passes them to respective sensors. It also provides the ability to push data to Windy API.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue