From 5f8e9946d95f62a3b49ad1bd25cd50608b3c6f02 Mon Sep 17 00:00:00 2001 From: shimataro Date: Sun, 29 Dec 2019 18:34:24 +0900 Subject: [PATCH] * print the contents of known_hosts and config --- .github/workflows/verify.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 3bd6aae..3b7c180 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -72,7 +72,10 @@ jobs: config: | DUMMY-CONFIG - name: print created files - run: ls ~/.ssh + run: | + ls ~/.ssh + cat ~/.ssh/known_hosts + cat ~/.ssh/config - name: Install SSH key again uses: shimataro/ssh-key-action@HEAD with: @@ -84,4 +87,7 @@ jobs: config: | # appended; size fill be 26 bytes. DUMMY-CONFIG - name: print created files again - run: ls ~/.ssh + run: | + ls ~/.ssh + cat ~/.ssh/known_hosts + cat ~/.ssh/config