Go to file
ben 31ac372df5 disable jenkinsfile for now 2024-05-03 23:57:21 +02:00
.pipeline docker tty opt 2024-04-05 09:09:26 +02:00
docker/bin try uv 2024-03-29 00:30:52 +01:00
img absolute unit 2023-10-12 07:47:12 +02:00
rootfs/bin frontend path 2024-05-03 23:53:16 +02:00
upstream-container continue building the upstream container from builds repo 2023-10-13 20:20:09 +02:00
.dockerignore seems to work 2023-10-05 19:05:51 +02:00
.gitignore frontend 2024-04-06 00:19:07 +02:00
Dockerfile move comments around 2024-04-06 00:19:01 +02:00
Dockerfile.from-virtualenv slightly more "standard" 2023-12-30 02:22:18 +01:00
Jenkinsfile.disabled disable jenkinsfile for now 2024-05-03 23:57:21 +02:00
LICENSE Initial commit 2023-09-28 15:37:11 +00:00
README.md github api to get latest release 2024-02-29 02:14:10 +01:00
apk_list.txt apk packages in upstream 2023-12-17 05:57:31 +01:00
hassfest-requirements.txt create requirements file needed to use hassfest 2024-03-30 19:07:47 +01:00

README.md

build-hass

Build Status version git github matrix

Home Assistant logo

Get latest release

Reading the git tags is a bit unreliable. Another way to do it would be to use the GitHub REST API to get the latest release.

$ curl -s https://api.github.com/repos/home-assistant/core/releases/latest | jq .name
"2024.2.5"

This is probably easier, and does not require auth (for public repos). The returned JSON contains a whole bunch of fields and info, this may not be the right one. Open the API URL in Firefox and take a look.