-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrated to a new async library. Thanks @exxamalte, for your hard work. * Migrated to `DataUpdateCoordinator` to reduce code complexity and improve performance. * Migrated geo_location platform to integration with config flow. * Added INGV Earthquakes sensor. * Added depth, mode and status to geo_location entities attributes. * Deleted title and external_id from geo_location entities attributes.
- Loading branch information
Showing
19 changed files
with
1,088 additions
and
526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'daily' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Release Workflow | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 📥 Checkout the repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🔢 Get release version | ||
id: version | ||
uses: home-assistant/actions/helpers/version@master | ||
|
||
- name: ℹ️ Get integration information | ||
id: information | ||
run: | | ||
name=$(find custom_components/ -type d -maxdepth 1 | tail -n 1 | cut -d "/" -f2) | ||
echo "::set-output name=name::$name" | ||
- name: 🖊️ Set version number | ||
run: | | ||
jq '.version = "${{ steps.version.outputs.version }}"' \ | ||
"${{ github.workspace }}/custom_components/${{ steps.information.outputs.name }}/manifest.json" > tmp \ | ||
&& mv -f tmp "${{ github.workspace }}/custom_components/${{ steps.information.outputs.name }}/manifest.json" | ||
- name: 👀 Validate data | ||
run: | | ||
manifestversion=$(jq -r '.version' ${{ github.workspace }}/custom_components/${{ steps.information.outputs.name }}/manifest.json) | ||
if [ "$manifestversion" != "${{ steps.version.outputs.version }}" ]; then | ||
echo "The version in custom_components/${{ steps.information.outputs.name }}/manifest.json was not correct" | ||
echo "$manifestversion" | ||
exit 1 | ||
fi | ||
- name: 🔢 Autobump version | ||
run: | | ||
VERSION=${{ steps.version.outputs.version }} | ||
PLACEHOLDER='__version__ = "develop"' | ||
VERSION_FILE=custom_components/${{ steps.information.outputs.name }}/version.py | ||
# ensure the placeholder is there. If grep doesn't find the placeholder | ||
# it exits with exit code 1 and github actions aborts the build. | ||
grep "$PLACEHOLDER" "$VERSION_FILE" | ||
sed -i "s/$PLACEHOLDER/__version__ = \"${VERSION}\"/g" "$VERSION_FILE" | ||
shell: bash | ||
|
||
- name: 📦 Create zip file for the integration | ||
run: | | ||
cd "${{ github.workspace }}/custom_components/${{ steps.information.outputs.name }}" | ||
zip ${{ steps.information.outputs.name }}.zip -r ./ | ||
- name: 📤 Upload the zip file as a release asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: "${{ github.workspace }}/custom_components/${{ steps.information.outputs.name }}/${{ steps.information.outputs.name }}.zip" | ||
asset_name: ${{ steps.information.outputs.name }}.zip | ||
asset_content_type: application/zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Changes | ||
|
||
## 2022.06.0 (02/06/2022) | ||
|
||
* Migrated to a new async library. Thanks @exxamalte, for your hard work. | ||
* Migrated to `DataUpdateCoordinator` to reduce code complexity and improve performance. | ||
* Migrated geo_location platform to integration with config flow. | ||
* Added INGV Earthquakes sensor. | ||
* Added depth, mode and status to geo_location entities attributes. | ||
* Deleted title and external_id from geo_location entities attributes. | ||
|
||
## 2022.02.0 (27/02/2022) | ||
|
||
* Bump georss-ingv-centro-nazionale-terremoti-client v0.6. | ||
|
||
## 2021.06.0 (08/06/2021) | ||
|
||
* Bump georss-ingv-centro-nazionale-terremoti-client v0.5. | ||
|
||
## 2021.04.1 (29/04/2021) | ||
|
||
* Added iot_class to manifest. | ||
|
||
## 2021.04.0 (20/04/2021) | ||
|
||
* Fixed image URLs by supporting new pattern. | ||
|
||
## 2021.03.1 (28/03/2021) | ||
|
||
* Update typing and changed the tag version. | ||
|
||
## 1.0.3 (18/02/2021) | ||
|
||
* Added version to manifest.json and some enhanced code. | ||
|
||
## 1.0.2 (23/11/2020) | ||
|
||
* Added more informations about integration #6. | ||
|
||
## 1.0.1 (08/11/2020) | ||
|
||
* Fixed path of preview images (HACS information). | ||
|
||
## 1.0.0 (27/10/2020) | ||
|
||
* First release. All credit goes to Malte Franken [@exxamalte]. |
Oops, something went wrong.