diff options
| author | 2026-02-24 16:36:22 +0800 | |
|---|---|---|
| committer | 2026-02-24 16:36:22 +0800 | |
| commit | a8e8e6450bc0f7290ce6cb86f51b234e9ea74cb6 (patch) | |
| tree | 0a3701f247342ed4c2cfffbe322ccc9a2a3ea0b3 /.github/workflows | |
| parent | 174cfd21addf152c9b66b91b8f51ccee747c25c3 (diff) | |
| download | soon-a8e8e6450bc0f7290ce6cb86f51b234e9ea74cb6.tar.gz soon-a8e8e6450bc0f7290ce6cb86f51b234e9ea74cb6.zip | |
Update AUR workflow to use pkgbuild-utils
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/publish-aur.yml | 4 |
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" |