diff options
| author | Nippy <nippy@rp1.hu> | 2026-07-28 16:29:28 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-07-28 16:29:28 +0200 |
| commit | 60973f87e140e0f370049f86bbce1e841f0416c5 (patch) | |
| tree | 44165fac889745cdbb5cd3c3f144f05ee2411950 /.forgejo | |
| parent | f75f64ad99a0c70b3a365c07ff513f341ba47b43 (diff) | |
| download | RaveOS-PKGBUILD-60973f87e140e0f370049f86bbce1e841f0416c5.tar.gz RaveOS-PKGBUILD-60973f87e140e0f370049f86bbce1e841f0416c5.zip | |
new settings
Diffstat (limited to '.forgejo')
| -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 c916513..f2b601d 100644 --- a/.forgejo/workflows/build-theme-send-core-repo.yml +++ b/.forgejo/workflows/build-theme-send-core-repo.yml @@ -55,6 +55,21 @@ jobs: makepkg -s --noconfirm -f cp -v raveos-calamares-theme-*.pkg.tar.zst /tmp/builtpkgs/ + - name: Build raveos-mirrorlist + run: | + set -euo pipefail + CORE="/tmp/raveos-core-repo/x86_64" + cd raveos-mirrorlist + PKGVER=$(grep '^pkgver=' PKGBUILD | cut -d= -f2) + PKGREL=$(grep '^pkgrel=' PKGBUILD | cut -d= -f2) + if ls "$CORE/raveos-mirrorlist-${PKGVER}-${PKGREL}-"*.pkg.tar.zst 2>/dev/null | grep -q .; then + echo "raveos-mirrorlist ${PKGVER}-${PKGREL} unchanged -> skip" + exit 0 + fi + rm -f *.pkg.tar.zst || true + makepkg -s --noconfirm -f + cp -v raveos-mirrorlist-*.pkg.tar.zst /tmp/builtpkgs/ + - name: Build raveos-calamares-module run: | set -euo pipefail |