Build only the kiosk deb in the release workflow
CI / server (push) Successful in 33s
CI / frontend (push) Successful in 29s
CI / kiosk (push) Canceled after 9s
Build and Publish Docker Images / build-and-push (server/Dockerfile, pistation-server) (push) Canceled after 0s
Build and Publish Docker Images / build-and-push (apps/web-client/Dockerfile, pistation-web) (push) Canceled after 0s

This commit is contained in:
2026-08-10 15:34:37 -04:00
parent ab4fabc958
commit 2e01f69ded
2 changed files with 8 additions and 6 deletions
+4 -4
View File
@@ -1,8 +1,9 @@
name: Release
# Container images are published separately by publish-images.yml. This builds the kiosk
# package for the Pi, which needs an arm64 toolchain, so it goes through buildx and QEMU
# rather than running on the host directly.
# Container images are published separately by publish-images.yml. This builds the kiosk .deb
# for the Pi, which needs an arm64 toolchain, so it goes through buildx and QEMU rather than
# running on the host directly. Only the .deb is built here: AppImage bundling shells out to
# linuxdeploy, which needs FUSE and cannot run inside an emulated build.
on:
push:
tags: ["v*"]
@@ -33,7 +34,6 @@ jobs:
run: |
mkdir -p dist
find bundle -name '*.deb' -exec cp {} dist/ \;
find bundle -name '*.AppImage' -exec cp {} dist/ \;
ls -lh dist
- uses: actions/upload-artifact@v4