From a8e2de3a3ce518a8702c1a59719cc66dd338bb93 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Tue, 8 Jul 2025 17:03:36 +0100 Subject: [PATCH] fix: forgejo deploy - use NodeJS as container --- .forgejo/workflows/deploy.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index bec06ae..2dc91c0 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -44,14 +44,10 @@ on: jobs: deploy: runs-on: ubuntu-latest + container: node:18 steps: - uses: actions/checkout@v3 - - name: Install Node.js - run: | - curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - - sudo apt-get install -y nodejs - - run: npm install - run: npm run build:posts - run: npm run build