Update pkgbuild.sh

This commit is contained in:
Santiago Lo Coco 2022-02-27 18:14:40 -03:00
parent ba3cfbe595
commit d3fdf1466f
1 changed files with 2 additions and 5 deletions

View File

@ -1,17 +1,14 @@
#!/usr/bin/env bash
pacman -Syu --noconfirm --needed base-devel
useradd builder -m
echo "builder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
chmod -R a+rw .
baseDir="$PWD"
cd "${INPUT_PKGDIR:-.}"
oldFiles=$(find -H "$PWD")
sudo -H -u builder makepkg --syncdeps --noconfirm ${INPUT_MAKEPKGARGS:-}
sudo -H -u nobody makepkg --syncdeps --noconfirm
sudo -H -u builder makepkg --printsrcinfo > .SRCINFO
sudo -H -u nobody makepkg --printsrcinfo > .SRCINFO
echo "::set-output name=srcInfo::.SRCINFO"
sudo mv .SRCINFO /github/workspace