From 18ed3e59ff4ad0bf9a87fccbc5b93b36581d0c76 Mon Sep 17 00:00:00 2001 From: ludeeus Date: Tue, 31 Dec 2024 11:06:10 +0000 Subject: [PATCH] Add back zip creation in release step --- .github/workflows/release.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c73a4af..77be374 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,6 +26,11 @@ jobs: exit 1 fi + - name: Create zip file for the integration + run: | + cd "${{ github.workspace }}/custom_components/healthchecksio" + zip healthchecksio.zip -r ./ + - name: Upload the zipfile as a release asset uses: softprops/action-gh-release@v2.2.0 with: