From d09ccda6e8eb4a8f0d3f4d2893c7118092a0c84b Mon Sep 17 00:00:00 2001 From: rober Date: Fri, 29 Dec 2023 14:01:06 +0000 Subject: [PATCH] Actualizar '.github/workflows/main.yml' --- .github/workflows/main.yml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 200f461..eddd80e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,18 +12,31 @@ jobs: run: | curl -L "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz" --output hugo.tar.gz tar -xvzf hugo.tar.gz - mv hugo /usr/local/bin + mv hugo /usr/local/bin + - name: Add SSH key + env: + SSH_AUTH_SOCK: /tmp/ssh_agent.sock + run: | + mkdir -p /home/runner/.ssh + # Replace example.com with the hostname of the machine + # you're SSH-ing into + ssh-keyscan robertops.com >> /home/runner/.ssh/known_hosts + # DOKKU_SSH_KEY is the name of the repository secret + echo "${{ secrets.CLAVE_SSH }}" > /home/runner/.ssh/github_actions + chmod 600 /home/runner/.ssh/github_actions + ssh-agent -a $SSH_AUTH_SOCK > /dev/null + ssh-add /home/runner/.ssh/github_actions - shell: bash env: clave_ssh: ${{ secrets.CLAVE_SSH }} contra: ${{ secrets.CONTRA }} run: | eval $(ssh-agent) - ssh-add - <<< "$clave_ssh" + #ssh-add - <<< "$clave_ssh" #./subir.sh #hugo - echo -e $clave_ssh > clave_ssh - chmod 600 clave_ssh + #echo -e $clave_ssh > clave_ssh + #chmod 600 clave_ssh ssh calcetines@nodriza.robertops.com 'echo "FUNCIONA"' #rsync -e "ssh -i clave_ssh" -azP public/* calcetines@nodriza.robertops.com:/home/calcetines/blog/ \ No newline at end of file