We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53c7627 commit 1b0ec00Copy full SHA for 1b0ec00
.github/workflows/update-aur.yml
@@ -58,9 +58,10 @@ jobs:
58
cd aur-repo
59
docker run --rm -v $(pwd):/pkg archlinux:latest /bin/bash -c "
60
pacman -Syu --noconfirm
61
- pacman -S --noconfirm namcap
62
- cd /pkg
63
- makepkg --printsrcinfo > .SRCINFO
+ pacman -S --noconfirm namcap sudo
+ useradd -m builder
+ chown -R builder:builder /pkg
64
+ sudo -u builder bash -c 'cd /pkg && makepkg --printsrcinfo > .SRCINFO'
65
"
66
67
- name: Commit and push to AUR
0 commit comments