aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/publish-aur.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/publish-aur.yml')
-rw-r--r--.github/workflows/publish-aur.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/publish-aur.yml b/.github/workflows/publish-aur.yml
index 4da34c0..87c4f49 100644
--- a/.github/workflows/publish-aur.yml
+++ b/.github/workflows/publish-aur.yml
@@ -33,7 +33,7 @@ jobs:
ssh-keyscan -t ed25519 aur.archlinux.org >> ~/.ssh/known_hosts
- name: Install makepkg
- run: sudo apt-get update && sudo apt-get install -y makepkg archlinux-keyring
+ run: sudo apt-get update && sudo apt-get install -y archlinux-keyring pkgbuild-utils
- name: Clone AUR repository and update PKGBUILD
run: |
@@ -47,7 +47,7 @@ jobs:
fi
VERSION="${TAG#v}"
sed -i "s/^pkgver=.*/pkgver=${VERSION}/" PKGBUILD
- makepkg --printsrcinfo > .SRCINFO
+ mksrcinfo --printsrcinfo > .SRCINFO
git add PKGBUILD .SRCINFO
if git diff --cached --quiet; then
echo "No changes to commit"