From d616680c01d12c46335f762f858167ae2d782cb6 Mon Sep 17 00:00:00 2001 From: HYOJIN Date: Fri, 17 Apr 2026 14:58:18 +0900 Subject: [PATCH] =?UTF-8?q?fix(ci):=20NodeSource=20=ED=8F=90=EA=B8=B0?= =?UTF-8?q?=EB=A1=9C=20Node.js=20=EC=A7=81=EC=A0=91=20=EB=B0=94=EC=9D=B4?= =?UTF-8?q?=EB=84=88=EB=A6=AC=20=EC=84=A4=EC=B9=98=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 7470be7..4805de0 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -40,8 +40,10 @@ jobs: - name: Install Node.js run: | - curl -fsSL https://deb.nodesource.com/setup_20.x | bash - - apt-get install -y nodejs + apt-get update && apt-get install -y xz-utils + curl -fsSL https://nodejs.org/dist/v20.18.1/node-v20.18.1-linux-x64.tar.xz -o node.tar.xz + tar -xJf node.tar.xz -C /usr/local --strip-components=1 + rm node.tar.xz node --version npm --version -- 2.45.2