From 951badbf32d2b8754457b2150fb33031719746df Mon Sep 17 00:00:00 2001 From: Tobias Glatthar Date: Sat, 15 Feb 2025 15:17:15 +0100 Subject: [PATCH] fix: remove build file from github actions --- .github/workflows/release-addons.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release-addons.yaml b/.github/workflows/release-addons.yaml index 6eb0372..d810d62 100644 --- a/.github/workflows/release-addons.yaml +++ b/.github/workflows/release-addons.yaml @@ -15,7 +15,6 @@ env: repo_url: https://raw.githubusercontent.com/t0bst4r/home-assistant-matter-hub repo_changelog: CHANGELOG.md changelog_file: hamh/CHANGELOG.md - build_file: hamh/build.yaml config_file: hamh/config.yaml jobs: @@ -46,9 +45,8 @@ jobs: git add ${{ env.changelog_file }} - name: Apply release version run: | - yq -i ".args.package_version = \"${{ steps.event_parser.outputs.version }}\"" ${{ env.build_file }} yq -i ".version = \"${{ steps.event_parser.outputs.version }}\"" ${{ env.config_file }} - git add ${{ env.build_file }} ${{ env.config_file }} + git add ${{ env.config_file }} - name: Publish run: | git commit -m "bumb(home-assistant-matter-hub): bumb to version ${{ steps.event_parser.outputs.version }}"