From a2bc74c2ad679c5e02039b37fbf714450bb3f25d Mon Sep 17 00:00:00 2001 From: schizza Date: Sun, 26 Oct 2025 21:49:22 +0100 Subject: [PATCH] Adds workflow to publish ZIP asset on release Creates a GitHub Actions workflow that automatically builds a ZIP archive of the custom component and attaches it to new releases. This simplifies distribution and installation for users. --- .github/workflows/publish-assets.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/publish-assets.yml diff --git a/.github/workflows/publish-assets.yml b/.github/workflows/publish-assets.yml new file mode 100644 index 0000000..84483f9 --- /dev/null +++ b/.github/workflows/publish-assets.yml @@ -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