From 18959b5128123b02dc67453a09627d6fcd00342e Mon Sep 17 00:00:00 2001 From: jade Date: Thu, 23 Jul 2026 23:32:44 +0900 Subject: [PATCH] fix: install nodejs for checkout action --- .gitea/workflows/deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 3c4854f2..78652d68 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -11,6 +11,11 @@ jobs: deploy: runs-on: ubuntu-latest steps: + - name: Install Node for Checkout + run: | + if command -v apt-get >/dev/null; then apt-get update && apt-get install -y nodejs git; fi + if command -v apk >/dev/null; then apk add nodejs git; fi + - name: Checkout Code uses: actions/checkout@v4