Modernize and migrate builder workflow to new builder actions#130
Merged
Modernize and migrate builder workflow to new builder actions#130
Conversation
Replace the monolithic builder container with the new builder GitHub Actions. Split the workflow into a main orchestrator (`builder.yaml`) that detects changed apps, and a reusable per-app workflow (`build-app.yaml`) that handles single app build. Also, replace unmaintained `jitterbit/get-changed-files` with `tj-actions/changed-files`. Closes home-assistant/epics#35
frenck
approved these changes
Mar 24, 2026
agners
reviewed
Mar 24, 2026
| *) echo "Unsupported TARGETARCH: ${TARGETARCH}" && exit 1 ;; \ | ||
| esac \ | ||
| && curl -sSLf -o /usr/bin/tempio \ | ||
| "https://github.com/home-assistant/tempio/releases/download/${TEMPIO_VERSION}/tempio_${tempio_arch}" |
Member
There was a problem hiding this comment.
Hm, not really new, but tempio is actually in the base image, so this is somewhat a bad example 🤔 😅
Member
Author
There was a problem hiding this comment.
Hmm, right 😅 It does no harm as it works and just displays some patterns but we can come up with something more practical.
| COPY rootfs / | ||
|
|
||
| LABEL \ | ||
| io.hass.type="addon" \ |
Member
Author
There was a problem hiding this comment.
IIRC Supervisor doesn't really consume it but defines it amongst its consts. So we should at least add it there (and maybe make some use of it?). Let's do it in a follow-up there and here before we update the docs.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace the monolithic builder container with the new builder GitHub Actions. Split the workflow into a main orchestrator (
builder.yaml) that detects changed apps, and a reusable per-app workflow (build-app.yaml) that handles single app build.Also, replace unmaintained
jitterbit/get-changed-fileswithtj-actions/changed-files.Closes home-assistant/epics#35