From 4d88c50a22d5fe10b2535ac5d94009eda2fa7321 Mon Sep 17 00:00:00 2001 From: Lewis Dale Date: Sun, 5 May 2024 19:50:45 +0100 Subject: [PATCH] Install SSH keys --- .gitea/workflows/build-and-copy.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build-and-copy.yaml b/.gitea/workflows/build-and-copy.yaml index 27e7712..76dbac8 100644 --- a/.gitea/workflows/build-and-copy.yaml +++ b/.gitea/workflows/build-and-copy.yaml @@ -12,4 +12,9 @@ jobs: with: go-version: 1.22 - name: Build binary - run: go build -o dist/oopsie \ No newline at end of file + run: go build -o dist/oopsie + - name: Install SSH Key + uses: shimataro/ssh-key-action@v2 + with: + key: ${{ secrets.SSH_KEY }} + known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }} \ No newline at end of file