summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNippy <nippy@rp1.hu>2026-07-18 09:53:50 +0200
committerNippy <nippy@rp1.hu>2026-07-18 09:53:50 +0200
commita949c9ffc2cd84442c5a56a1bb4a062e7b910add (patch)
tree0508e5af674a47f317b18102cb0967afd7d96726
parent822d7085d47b00c0213011a2b95c70c35e1f380c (diff)
downloadRaveOS-PKGBUILD-a949c9ffc2cd84442c5a56a1bb4a062e7b910add.tar.gz
RaveOS-PKGBUILD-a949c9ffc2cd84442c5a56a1bb4a062e7b910add.zip
plymouth build step
-rw-r--r--.forgejo/workflows/build-theme-send-core-repo.yml15
1 files changed, 15 insertions, 0 deletions
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