From 1d7c7c864e4ddc43497f2ece93d6b793d76caa46 Mon Sep 17 00:00:00 2001 From: Vegard Engen Date: Tue, 24 Jun 2025 11:25:03 +0200 Subject: [PATCH] fix --- .gitea/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 29a5eb9..613d391 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -7,14 +7,14 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Install dependencies + run: apt update && apt -y install openssh-client - name: Setup SSH run: | mkdir -p ~/.ssh echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan gitea-ssh.engen.priv.no >> ~/.ssh/known_hosts - # - name: Install node and go - # run: apt update && apt -y install nodejs - name: Check out repository code uses: actions/checkout@v4 - name: ssh repo