diff options
Diffstat (limited to '.forgejo')
| -rw-r--r-- | .forgejo/workflows/build-theme-send-core-repo.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.forgejo/workflows/build-theme-send-core-repo.yml b/.forgejo/workflows/build-theme-send-core-repo.yml index 97cc958..8fa3d5b 100644 --- a/.forgejo/workflows/build-theme-send-core-repo.yml +++ b/.forgejo/workflows/build-theme-send-core-repo.yml @@ -267,6 +267,20 @@ jobs: makepkg -s --noconfirm -f cp -v build/raveos-support-*.pkg.tar.zst /tmp/builtpkgs/ + - name: Build raveos-updater + run: | + set -euo pipefail + CORE="/tmp/raveos-core-repo/x86_64" + cd raveos-updater + PKGVER=$(grep '^pkgver=' PKGBUILD | cut -d= -f2) + PKGREL=$(grep '^pkgrel=' PKGBUILD | cut -d= -f2) + if ls "$CORE/raveos-updater-${PKGVER}-${PKGREL}-"*.pkg.tar.zst 2>/dev/null | grep -q .; then + echo "raveos-updater ${PKGVER}-${PKGREL} unchanged -> skip" + exit 0 + fi + makepkg -s --noconfirm -f + cp -v raveos-updater-*.pkg.tar.zst /tmp/builtpkgs/ + - name: Build raveos-plymouth-theme run: | set -euo pipefail |