From 59ae99ca04e8a32653995b657df0f107153585d3 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Fri, 23 Jan 2026 17:15:49 +0100 Subject: [PATCH] ensure nodejs installed --- .gitea/workflows/ci.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 3a04f05..b042a28 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -18,14 +18,20 @@ jobs: build-base-builder: runs-on: ubuntu-latest timeout-minutes: 360 + container: + image: docker:29.1.5-dind + options: --privileged services: docker: - image: docker:28.5.1-dind + image: docker:29.1.5-dind options: --privileged steps: - name: Checkout repository uses: actions/checkout@v3 + - name: Install Node.js + run: apt-get install -y nodejs + - name: Login to the Container registry uses: docker/login-action@v2 with: @@ -36,5 +42,5 @@ jobs: - name: Build Base Builder run: docker build -t "$BASE_BUILDER_TAG" ./Linux/BaseBuilder - # - name: Push Base Builder - # run: docker push "$BASE_BUILDER_TAG" \ No newline at end of file + - name: Push Base Builder + run: docker push "$BASE_BUILDER_TAG" \ No newline at end of file