From 19770b4d9bf9b36759109c3831cb5961e2a34e44 Mon Sep 17 00:00:00 2001 From: phoenix Date: Wed, 12 Mar 2025 19:30:37 -0400 Subject: [PATCH] More changes --- .github/workflows/rust-ubuntu-latest.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust-ubuntu-latest.yml b/.github/workflows/rust-ubuntu-latest.yml index 5eea264..7f9fcb0 100644 --- a/.github/workflows/rust-ubuntu-latest.yml +++ b/.github/workflows/rust-ubuntu-latest.yml @@ -21,14 +21,16 @@ jobs: - name: Add SSH Keys run: | - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' + echo "Starting" + apt update -y + # 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' eval $(ssh-agent -s) # mv "$SSH_DEPLOY_KEY" gitlab_deploy_key # copies the file from the variable. echo $SSH_PRIVATE_KEY > gitlab_deploy_key - chmod 600 gitlab_deploy_key - ssh-add gitlab_deploy_key - mkdir -p ~/.ssh - '[[ -f /.dockerenv ]] && echo -e "Host gitlab.com\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' + # chmod 600 gitlab_deploy_key + # ssh-add gitlab_deploy_key + # mkdir -p ~/.ssh + # '[[ -f /.dockerenv ]] && echo -e "Host gitlab.com\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' - name: Build