From fea007d7356b26c6b7300b1e27d56eaf9fe3058d Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 26 Aug 2025 16:09:08 -0400 Subject: [PATCH] Fix workflow --- .gitea/workflows/run-build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitea/workflows/run-build.yml b/.gitea/workflows/run-build.yml index c14f0a9..7ce75ab 100644 --- a/.gitea/workflows/run-build.yml +++ b/.gitea/workflows/run-build.yml @@ -11,6 +11,20 @@ jobs: runs-on: ubuntu-22.04 steps: + container: mcr.microsoft.com/devcontainers/python:3.11 + + steps: + - name: Install Node (and git/make) inside container + run: | + set -eux + apt-get update + # add gcc & toolchain while keeping your originals + apt-get install -y --no-install-recommends curl ca-certificates git build-essential make + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt-get install -y --no-install-recommends nodejs + node -v + rm -rf /var/lib/apt/lists/* + - name: Checkout uses: actions/checkout@v4