diff options
| author | Nippy <nippy@rp1.hu> | 2026-07-05 10:44:22 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-07-05 10:44:22 +0200 |
| commit | 94078f2c946e7feae19e933f3b0467183cc249af (patch) | |
| tree | 04362dc8b6c23cfa97c4f0b7753ef57444b2a570 | |
| parent | 65d262be814f00124d465b79588f0fa6285f319c (diff) | |
| download | RaveOS-PKGBUILD-94078f2c946e7feae19e933f3b0467183cc249af.tar.gz RaveOS-PKGBUILD-94078f2c946e7feae19e933f3b0467183cc249af.zip | |
raveos-keyring
| -rw-r--r-- | .forgejo/workflows/build-theme-send-core-repo.yml | 15 |
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 201a1ab..108dbfe 100644 --- a/.forgejo/workflows/build-theme-send-core-repo.yml +++ b/.forgejo/workflows/build-theme-send-core-repo.yml @@ -86,6 +86,21 @@ jobs: PKG=$(ls -t *.pkg.tar.zst | grep -v -- '-debug-' | head -n 1) cp -v "$PKG" /tmp/builtpkgs/ + - name: Build raveos-keyring + run: | + set -euo pipefail + CORE="/tmp/raveos-core-repo/x86_64" + cd raveos-keyring + PKGVER=$(grep '^pkgver=' PKGBUILD | cut -d= -f2) + PKGREL=$(grep '^pkgrel=' PKGBUILD | cut -d= -f2) + if ls "$CORE/raveos-keyring-${PKGVER}-${PKGREL}-"*.pkg.tar.zst 2>/dev/null | grep -q .; then + echo "raveos-keyring ${PKGVER}-${PKGREL} unchanged -> skip" + exit 0 + fi + rm -rf build || true + makepkg -s --noconfirm -f + cp -v build/raveos-keyring-*.pkg.tar.zst /tmp/builtpkgs/ + - name: Build raveos-sddm-theme run: | set -euo pipefail |