From a949c9ffc2cd84442c5a56a1bb4a062e7b910add Mon Sep 17 00:00:00 2001 From: Nippy Date: Sat, 18 Jul 2026 09:53:50 +0200 Subject: plymouth build step --- .forgejo/workflows/build-theme-send-core-repo.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.forgejo/workflows/build-theme-send-core-repo.yml b/.forgejo/workflows/build-theme-send-core-repo.yml index 108dbfe..2dc65b4 100644 --- a/.forgejo/workflows/build-theme-send-core-repo.yml +++ b/.forgejo/workflows/build-theme-send-core-repo.yml @@ -226,6 +226,21 @@ jobs: makepkg -s --noconfirm -f cp -v build/raveos-welcome-*.pkg.tar.zst /tmp/builtpkgs/ + - name: Build raveos-plymouth-theme + run: | + set -euo pipefail + CORE="/tmp/raveos-core-repo/x86_64" + cd raveos-plymouth-theme + PKGVER=$(grep '^pkgver=' PKGBUILD | cut -d= -f2) + PKGREL=$(grep '^pkgrel=' PKGBUILD | cut -d= -f2) + if ls "$CORE/raveos-plymouth-theme-${PKGVER}-${PKGREL}-"*.pkg.tar.zst 2>/dev/null | grep -q .; then + echo "raveos-plymouth-theme ${PKGVER}-${PKGREL} unchanged -> skip" + exit 0 + fi + rm -f *.pkg.tar.zst || true + makepkg -s --noconfirm -f + cp -v raveos-plymouth-theme-*.pkg.tar.zst /tmp/builtpkgs/ + - name: Sign built packages run: | set -euo pipefail -- cgit v1.3