From d42adacd38592b7411168db5c2c0b7faee338e42 Mon Sep 17 00:00:00 2001 From: Ricardo Mancinas Date: Sat, 11 Jul 2026 21:13:45 -0700 Subject: [PATCH] fix: install node before checkout --- .gitea/workflows/deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 5b13314..db08270 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -24,11 +24,12 @@ jobs: contents: read packages: write steps: + - name: Install Node.js for actions + run: apk add --no-cache nodejs npm + - name: Checkout code uses: actions/checkout@v4 - - name: Install Node.js for actions - run: apk add --no-cache nodejs npm - uses: docker/setup-buildx-action@v3 - uses: docker/login-action@v3 with: