Compare commits

..

3 Commits

Author SHA1 Message Date
37137e8b0a fix: Chef cook uses wrong toolchain
All checks were successful
Build and deploy / build (push) Successful in 10m41s
Build and deploy / Deploy container (push) Successful in 42s
This adds a toolchain setup step to the base image so we do not have to
do it multiple times
2025-11-20 04:10:16 +01:00
f9ba81f2b5 chore: Upgraded to new workflow 2025-11-20 04:10:16 +01:00
b547f66d86 feat: Added 3d printer to guest room
All checks were successful
Build and deploy / build (push) Successful in 17m17s
Build and deploy / Deploy container (push) Successful in 3m19s
2025-11-16 16:37:12 +01:00
2 changed files with 10 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ on:
jobs: jobs:
build: build:
uses: dreaded_x/workflows/.gitea/workflows/docker-kubernetes.yaml@a302fa5a1ce1ac580039fa1ef306a9fd80f698e7 uses: dreaded_x/workflows/.gitea/workflows/docker-kubernetes.yaml@ef78704b98c72e4a6b8340f9bff7b085a7bdd95c
secrets: inherit secrets: inherit
with: with:
push_manifests: false push_manifests: false
@@ -37,7 +37,7 @@ jobs:
-e AUTOMATION__SECRETS__MQTT_PASSWORD=${{ secrets.MQTT_PASSWORD }} \ -e AUTOMATION__SECRETS__MQTT_PASSWORD=${{ secrets.MQTT_PASSWORD }} \
-e AUTOMATION__SECRETS__HUE_TOKEN=${{ secrets.HUE_TOKEN }} \ -e AUTOMATION__SECRETS__HUE_TOKEN=${{ secrets.HUE_TOKEN }} \
-e AUTOMATION__SECRETS__NTFY_TOPIC=${{ secrets.NTFY_TOPIC }} \ -e AUTOMATION__SECRETS__NTFY_TOPIC=${{ secrets.NTFY_TOPIC }} \
git.huizinga.dev/dreaded_x/automation_rs@${{ needs.build.outputs.digest }} $(echo ${{ toJSON(needs.build.outputs.images) }} | jq .automation -r)
docker network connect web automation_rs docker network connect web automation_rs

View File

@@ -25,10 +25,18 @@ function module.setup(mqtt_client)
}) })
windows.add(window) windows.add(window)
local printer = devices.OutletOnOff.new({
name = "3D Printer",
room = "Guest Room",
topic = helper.mqtt_z2m("guest/printer"),
client = mqtt_client,
})
--- @type Module --- @type Module
return { return {
light, light,
window, window,
printer,
} }
end end