Skip to content

Commit

Permalink
Fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre0512 committed Oct 6, 2023
1 parent 529f48b commit f5c8680
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/hacs_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ jobs:
uses: "hacs/action@main"
with:
category: "integration"
ignore: "brands"
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:

- name: ZIP Component Dir
run: |
cd ${{ github.workspace }}/custom_components/hon
cd ${{ github.workspace }}/custom_components/speedport
zip -r speedport.zip ./
- name: Upload zip to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ github.workspace }}/custom_components/hon/speedport.zip
file: ${{ github.workspace }}/custom_components/speedport/speedport.zip
asset_name: speedport.zip
tag: ${{ github.ref }}
overwrite: true
20 changes: 13 additions & 7 deletions custom_components/speedport/manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
"codeowners": ["@Andre0512"],
"config_flow": true,
"requirements": ["speedport-api~=0.4"],
"dependencies": ["network"],
"domain": "speedport",
"name": "Speedport",
"version": "0.1.0",
"iot_class": "local_polling",
"codeowners": [
"@Andre0512"
],
"config_flow": true,
"dependencies": [
"network"
],
"documentation": "https://github.com/Andre0512/speedport/",
"issue_tracker": "https://github.com/Andre0512/speedport/issues"
"iot_class": "local_polling",
"issue_tracker": "https://github.com/Andre0512/speedport/issues",
"requirements": [
"speedport-api~=0.4"
],
"version": "0.1.0"
}

0 comments on commit f5c8680

Please sign in to comment.