From 41a1bbab66f7c02f6bab3df7eb01b92d76b1953b Mon Sep 17 00:00:00 2001 From: Cian Hatton Date: Sat, 27 Aug 2022 23:13:13 +0100 Subject: [PATCH] create ssh pub f ile --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44a905c..f4d9d22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,12 +5,17 @@ on: env: VAULT_PASSWORD: "${{ secrets.VAULT_PASSWORD }}" + SSH_PUB: "${{ secrets.SSH_PUB }}" jobs: tests: name: Tests runs-on: ubuntu-latest steps: + - name: Create SSH pub + run: | + echo "creating ~/.ssh/id_rsa.pub file" + echo "$SSH_PUB" > ~/.ssh/id_rsa.pub - name: Install SSH key uses: shimataro/ssh-key-action@v2 with: