diff options
| author | 2026-02-24 16:33:43 +0800 | |
|---|---|---|
| committer | 2026-02-24 16:33:43 +0800 | |
| commit | 174cfd21addf152c9b66b91b8f51ccee747c25c3 (patch) | |
| tree | d8b9d953af35773c6fae041734ac8d4c0cb2e04a /.github/workflows/publish-aur.yml | |
| parent | 5dd006372ffbe0bd3e77966ed94147b18dd5f3b9 (diff) | |
| download | soon-174cfd21addf152c9b66b91b8f51ccee747c25c3.tar.gz soon-174cfd21addf152c9b66b91b8f51ccee747c25c3.zip | |
Install makepkg in AUR publish workflow
Added step to install makepkg and archlinux-keyring.
Diffstat (limited to '.github/workflows/publish-aur.yml')
| -rw-r--r-- | .github/workflows/publish-aur.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/publish-aur.yml b/.github/workflows/publish-aur.yml index 73edde7..4da34c0 100644 --- a/.github/workflows/publish-aur.yml +++ b/.github/workflows/publish-aur.yml @@ -32,6 +32,9 @@ jobs: chmod 600 ~/.ssh/id_ed25519 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 + - name: Clone AUR repository and update PKGBUILD run: | git clone ssh://aur@aur.archlinux.org/soon.git aur-repo |