Files
pistation/.gitea/workflows/release.yml
T
SirBlob 2e01f69ded
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
Build only the kiosk deb in the release workflow
2026-08-10 15:34:37 -04:00

44 lines
1.2 KiB
YAML

name: Release
# 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*"]
workflow_dispatch:
jobs:
kiosk-deb:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- uses: docker/setup-buildx-action@v3
- name: Build the kiosk bundle for arm64
uses: docker/build-push-action@v6
with:
context: .
file: ./apps/kiosk-client/Dockerfile.bundle
platforms: linux/arm64
target: bundle
outputs: type=local,dest=bundle
- name: Collect artifacts
run: |
mkdir -p dist
find bundle -name '*.deb' -exec cp {} dist/ \;
ls -lh dist
- uses: actions/upload-artifact@v4
with:
name: pistation-kiosk-arm64
path: dist/*
if-no-files-found: error