From 216886fbdab9d1e59345c9a6cebeb778c51834f0 Mon Sep 17 00:00:00 2001 From: Sebastian Molenda Date: Thu, 14 May 2026 00:08:10 +0200 Subject: [PATCH] master of puppets --- .gitea/workflows/deploy.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6084033..0ab3b2f 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -8,15 +8,19 @@ on: jobs: deploy: runs-on: ubuntu-latest - container: - image: node:20 steps: # ── 1. Checkout ────────────────────────────────────────────────────────── - name: Checkout repository uses: actions/checkout@v4 - # ── 2. PHP + Composer ──────────────────────────────────────────────────── + # ── 2. Node.js ─────────────────────────────────────────────────────────── + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + # ── 3. PHP + Composer ──────────────────────────────────────────────────── - name: Set up PHP uses: shivammathur/setup-php@v2 with: