Skip to content

v1.3.0

v1.3.0 #12

Workflow file for this run

name: Release
on:
workflow_dispatch:
release:
types: [published]
env:
COMPONENT_DIR: danfoss_ally
jobs:
release_zip_file:
name: Prepare release asset
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Update manifest.json version to ${{ github.event.release.tag_name }}
run: |
python3 ${{ github.workspace }}/.github/scripts/update_hacs_manifest.py --version ${{ github.event.release.tag_name }} --path /custom_components/danfoss_ally/
- name: Commit manifest update
run: |
git config user.name github-actions
git config user.email [email protected]
git add ./custom_components/danfoss_ally/manifest.json
git commit -m "Updated manifest.json"
git push origin HEAD:master
- name: Create zip
run: |
cd custom_components/danfoss_ally
zip danfoss_ally.zip -r ./
- name: Upload zip to release
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./custom_components/danfoss_ally/danfoss_ally.zip
asset_name: danfoss_ally.zip
tag: ${{ github.ref }}
overwrite: true