From 15882869faac79bbc36fae24291fa9acb5497858 Mon Sep 17 00:00:00 2001 From: Test Date: Sun, 6 Sep 2026 22:36:51 -0700 Subject: [PATCH] ci: install Node.js and Docker for actions runtime --- .gitea/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 296df09..bf8071d 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -15,6 +15,9 @@ jobs: REGISTRY: forgejo.riotpiao.com IMAGE: forgejo.riotpiao.com/rock/poimen-workflows steps: + - name: Install Node.js and Docker for actions runtime + run: apt-get update && apt-get install -y nodejs docker.io + - name: Configure git authentication run: | git config --global url."https://oauth2:${{ secrets.REGISTRY_PAT }}@forgejo.riotpiao.com".insteadOf "https://forgejo.riotpiao.com"