We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09b0e56 commit f97583aCopy full SHA for f97583a
1 file changed
.github/workflows/ci-cd.yml
@@ -40,6 +40,14 @@ jobs:
40
runs-on: ubuntu-latest
41
42
steps:
43
+ - name: Mostrar fingerprint de la clave privada cargada como secreto
44
+ run: |
45
+ echo "$DROPLET_SSH_KEY" > id_rsa
46
+ chmod 600 id_rsa
47
+ ssh-keygen -lf id_rsa
48
+ env:
49
+ DROPLET_SSH_KEY: ${{ secrets.DROPLET_SSH_KEY }}
50
+
51
- name: Probar conexión SSH desde Actions
52
uses: appleboy/ssh-action@v1.0.0
53
with:
0 commit comments