From 813fa4183f825b5a14439a18f9c882b0c956acf7 Mon Sep 17 00:00:00 2001 From: Jack Powell Date: Wed, 20 Mar 2024 00:46:14 +0000 Subject: [PATCH 1/2] update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 60fd308..4e01dc3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -18,3 +18,4 @@ aiohttp~=3.9.3 zeroconf~=0.131.0 websockets~=12.0 pyUnfoldedCircleRemote~=0.6.1 +ha-ffmpeg From ae8b05740132655482effa7791648dc3649d21f3 Mon Sep 17 00:00:00 2001 From: Jack Powell Date: Tue, 9 Apr 2024 19:59:10 -0400 Subject: [PATCH 2/2] Update release.yml Correct zip syntax --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe3aa1c..fbbea2f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: shell: bash run: | cd "${{ github.workspace }}/custom_components/unfoldedcircle" - zip unfoldedcircle.zip -r ./ -x "./pyunfoldedCircleRemote/*" + zip unfoldedcircle.zip -r ./ -x '*pyUnfoldedCircleRemote*' - name: Upload ZIP file to release uses: softprops/action-gh-release@v0.1.15