From d5322288f39d32c2a0a4b83c2003843172d8d3f8 Mon Sep 17 00:00:00 2001 From: Jeremy Fix Date: Fri, 14 Jun 2024 09:30:41 +0200 Subject: [PATCH] try: fix syntax for installing openssh-client --- .github/workflows/cicd_dev.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cicd_dev.yml b/.github/workflows/cicd_dev.yml index 95d65c1..f6b8721 100644 --- a/.github/workflows/cicd_dev.yml +++ b/.github/workflows/cicd_dev.yml @@ -11,10 +11,11 @@ on: jobs: copy: runs-on: ubuntu-latest + steps: - name: Install and start the ssh agent run: | - 'which ssh-agent || ( apt-get install -qq openssh-client )' + which ssh-agent || ( apt-get install -qq openssh-client ) eval $(ssh-agent -s) - name: Read the ssh private key