2 Commits

Author SHA1 Message Date
Uyanide da3c0d6896 🚀 CD
CI/CD / Package (push) Failing after 25s
CI/CD / Publish (push) Has been skipped
2026-03-24 09:09:35 +01:00
Uyanide 07d281d9f1 🚀 CD
CI/CD / Package (push) Failing after 23s
CI/CD / Publish (push) Has been skipped
2026-03-24 09:06:22 +01:00
+12 -3
View File
@@ -55,15 +55,24 @@ jobs:
- name: Build and Generate AUR Meta
run: |
docker run --rm -v ${{ github.workspace }}:/workspace archlinux:latest /bin/bash -c "
pacman -Syu --noconfirm base-devel cmake ninja qt6-base qt6-declarative sudo
tar -cf - . | docker run --rm -i archlinux:latest /bin/bash -e -c "
mkdir -p /workspace && cd /workspace
tar -xf -
exec 3>&1 1>&2
pacman-key --init && pacman-key --populate
pacman -Sy --noconfirm archlinux-keyring
pacman -Su --noconfirm base-devel cmake ninja qt6-base qt6-declarative sudo
useradd -m builduser
chown -R builduser:builduser /workspace
echo 'builduser ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
su - builduser -c 'cd /workspace && makepkg -sf --noconfirm'
su - builduser -c 'cd /workspace && makepkg --printsrcinfo > .SRCINFO'
"
tar -cf - *.pkg.tar.zst PKGBUILD LICENSE .SRCINFO >&3
" | tar -xf -
- name: Upload Artifacts
uses: actions/upload-artifact@v4