diff options
| author | 2026-02-24 16:42:15 +0800 | |
|---|---|---|
| committer | 2026-02-24 16:42:15 +0800 | |
| commit | f590fb19c10ed549dd1aa45e5bc44db37fe01960 (patch) | |
| tree | ccce9f454dcdd34982f3293b1eaecd9e12f049b7 /.github/workflows | |
| parent | cd57ce195fd73651bd6516decd93c237c0f7083f (diff) | |
| download | soon-f590fb19c10ed549dd1aa45e5bc44db37fe01960.tar.gz soon-f590fb19c10ed549dd1aa45e5bc44db37fe01960.zip | |
Remove ssh-keyscan from AUR publish workflow
Removed ssh-keyscan command from workflow.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/publish-aur.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/publish-aur.yml b/.github/workflows/publish-aur.yml index 46e7ae7..75adf54 100644 --- a/.github/workflows/publish-aur.yml +++ b/.github/workflows/publish-aur.yml @@ -32,8 +32,7 @@ jobs: mkdir -p ~/.ssh echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519 - 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 |