diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml new file mode 100644 index 0000000..9a90f2a --- /dev/null +++ b/.github/workflows/tagged-release.yml @@ -0,0 +1,17 @@ +name: "Auto Release" + +on: + push: + tags: + - "v?[0-9]+.[0-9]+.[0-9]+" + +jobs: + tagged-release: + name: "Tagged Release" + runs-on: "ubuntu-latest" + + steps: + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GIT_HUB_TOKEN }}" + prerelease: false \ No newline at end of file diff --git a/custom_components/bluesound_alt/manifest.json b/custom_components/bluesound_alt/manifest.json index f8e8311..c500060 100644 --- a/custom_components/bluesound_alt/manifest.json +++ b/custom_components/bluesound_alt/manifest.json @@ -2,8 +2,9 @@ "domain": "bluesound_alt", "name": "Bluesound Alt", "codeowners": ["@aunefyren"], - "documentation": "https://www.home-assistant.io/integrations/bluesound", + "documentation": "https://github.com/aunefyren/bluesound_alt", "iot_class": "local_polling", "requirements": ["xmltodict==0.13.0"], - "version" : "0.0.1" + "version" : "0.0.1", + "issue_tracker": "https://github.com/aunefyren/bluesound_alt/issues" }