We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64ba41c commit a24e857Copy full SHA for a24e857
1 file changed
.github/workflows/release.yml
@@ -36,10 +36,16 @@ jobs:
36
fi
37
echo "✅ Version match: $TAG_VERSION"
38
39
+ - name: Create component archive
40
+ run: |
41
+ cd custom_components
42
+ zip -r ../radpro.zip radpro/
43
+
44
- name: Create Release
45
uses: softprops/action-gh-release@v2
46
with:
47
generate_release_notes: true
48
+ files: radpro.zip
49
body: |
50
## Installation
51
@@ -52,13 +58,3 @@ jobs:
52
58
1. Download `radpro.zip` from assets below
53
59
2. Extract to `config/custom_components/radpro/`
54
60
3. Restart Home Assistant
55
-
56
- - name: Create component archive
57
- run: |
- cd custom_components
- zip -r ../radpro.zip radpro/
61
- - name: Upload Release Asset
62
- uses: softprops/action-gh-release@v2
63
- with:
64
- files: radpro.zip
0 commit comments