diff options
| author | 2026-02-24 16:52:15 +0800 | |
|---|---|---|
| committer | 2026-02-24 16:52:15 +0800 | |
| commit | fa16122d2a9b2e4f5c5c43d0fd99a3b3086b0d90 (patch) | |
| tree | 6599cdb82b61f27a149994829a2e4fa3a1d0e3bb | |
| parent | 9fadcc13512affc379551d3475eb96f0c9cc79d4 (diff) | |
| download | soon-fa16122d2a9b2e4f5c5c43d0fd99a3b3086b0d90.tar.gz soon-fa16122d2a9b2e4f5c5c43d0fd99a3b3086b0d90.zip | |
Add debug steps for SSH setup in publish-aur.yml
Added debugging steps to verify SSH setup for AUR.
| -rw-r--r-- | .github/workflows/publish-aur.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/publish-aur.yml b/.github/workflows/publish-aur.yml index 281e9c3..00395ec 100644 --- a/.github/workflows/publish-aur.yml +++ b/.github/workflows/publish-aur.yml @@ -38,6 +38,12 @@ jobs: - name: Add AUR host to known_hosts run: ssh-keyscan -t ed25519 aur.archlinux.org >> ~/.ssh/known_hosts + + - name: Debug SSH setup + run: | + ls -l ~/.ssh + cat ~/.ssh/id_ed25519 + cat ~/.ssh/known_hosts - name: Clone AUR repository and update PKGBUILD run: | |