diff options
| author | 2026-02-24 17:54:46 +0800 | |
|---|---|---|
| committer | 2026-02-24 17:54:46 +0800 | |
| commit | 4341b36daf05648ab0099b0b2924a97c2e4a4564 (patch) | |
| tree | aa2fcf706d751ef9d50e603659f6436fc01ca3a7 | |
| parent | b1e2c8ea075c661c7f6c98908ef2f4980c295bbd (diff) | |
| download | soon-4341b36daf05648ab0099b0b2924a97c2e4a4564.tar.gz soon-4341b36daf05648ab0099b0b2924a97c2e4a4564.zip | |
Add debug step for SSH files in AUR publish workflow
Added debugging steps to check SSH configuration.
| -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 c12df6a..02bd922 100644 --- a/.github/workflows/publish-aur.yml +++ b/.github/workflows/publish-aur.yml @@ -38,6 +38,12 @@ - name: Clone AUR repo run: | GIT_SSH_COMMAND="ssh -i ~/.ssh/id_ed25519 -o UserKnownHostsFile=~/.ssh/known_hosts" git clone ssh://aur@aur.archlinux.org/soon.git aur-push + + - name: Debug SSH files + run: | + ls -l ~/.ssh + cat ~/.ssh/known_hosts + cat ~/.ssh/id_ed25519 - name: Update PKGBUILD and .SRCINFO run: | |