Fix hassio channel switching for dev builds (#4064)

Fix build job to write config option for channel switching from #4043 to the
actual config. As it was written to .config in the top-level build directory,
it was never correctly applied.
This commit is contained in:
Jan Čermák 2025-05-14 22:05:13 +02:00 committed by GitHub
parent 65fdef963c
commit a13700196c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -284,7 +284,7 @@ jobs:
with: with:
image: ${{ needs.prepare.outputs.build_container_image }} image: ${{ needs.prepare.outputs.build_container_image }}
command: | command: |
bash -c 'echo "${{ needs.prepare.outputs.hassio_channel_option }}=y" >> /build/.config && make olddefconfig' bash -c 'echo "${{ needs.prepare.outputs.hassio_channel_option }}=y" >> /build/output/.config && make olddefconfig'
- name: Build - name: Build
uses: "./.github/actions/haos-builder-command" uses: "./.github/actions/haos-builder-command"