From 60a72261994ae8b378a51bbb730dfdf0d711fe94 Mon Sep 17 00:00:00 2001 From: jade Date: Fri, 24 Jul 2026 00:29:02 +0900 Subject: [PATCH] chore: remove unnecessary Node.js installation from deploy.yml --- .gitea/workflows/deploy.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index fb6b2b38..371f6224 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -11,11 +11,7 @@ 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