diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1261098..c5e8851 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -17,9 +17,16 @@ env: jobs: build-and-push: runs-on: ubuntu-latest - container: node:22-bookworm if: github.event_name == 'push' && github.ref == 'refs/heads/main' steps: + - name: Install Node.js + run: | + apt-get update + apt-get install -y curl + curl -fsSL https://deb.nodesource.com/setup_22.x | bash - + apt-get install -y nodejs + node --version + - name: Checkout uses: actions/checkout@v4