diff options
| -rw-r--r-- | .github/workflows/publish-aur.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/publish-aur.yml b/.github/workflows/publish-aur.yml index 75adf54..281e9c3 100644 --- a/.github/workflows/publish-aur.yml +++ b/.github/workflows/publish-aur.yml @@ -32,7 +32,13 @@ jobs: mkdir -p ~/.ssh echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519 - + + - name: Install dependencies + run: pacman -Sy --noconfirm git openssh base-devel + + - name: Add AUR host to known_hosts + run: ssh-keyscan -t ed25519 aur.archlinux.org >> ~/.ssh/known_hosts + - name: Clone AUR repository and update PKGBUILD run: | git clone ssh://aur@aur.archlinux.org/soon.git aur-repo |