From 972e6876aa909a5a71474fd6bc680240ad4c9d05 Mon Sep 17 00:00:00 2001 From: informaticker Date: Sun, 3 Nov 2024 23:38:10 +0100 Subject: [PATCH] fix actions AGAIN --- .gitea/workflows/deploy.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index a683010..2a32ab7 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -7,9 +7,11 @@ jobs: container: image: alpine steps: - - name: Install git and openssh + - name: Install git and openssh and node run: | - apk add --no-cache git openssh-client + apk add --no-cache git openssh-client nodejs + - name: Checkout code + uses: actions/checkout@v3 - name: Setup SSH env: SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}