From d4a78d0d4f5b8b90fa3a6226e8e35046c80de1fa Mon Sep 17 00:00:00 2001 From: MrLetsplay Date: Tue, 4 Mar 2025 21:55:05 +0100 Subject: [PATCH] Update workflow --- .gitea/workflows/build_linux_docker.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/build_linux_docker.yml b/.gitea/workflows/build_linux_docker.yml index 41038d75..63a5fb74 100644 --- a/.gitea/workflows/build_linux_docker.yml +++ b/.gitea/workflows/build_linux_docker.yml @@ -7,6 +7,14 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Install dependencies + run: > + apt update && apt install -y curl wget gpg && + mkdir -p /etc/apt/keyrings && + (curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg) && + (echo 'deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main' | tee /etc/apt/sources.list.d/nodesource.list) && + apt update && apt install -y nodejs && npm install -g yarn + - name: Download Cringe Studios configuration run: "mkdir cringe && wget -O cringe/config.json https://chat.cringe-studios.com/config.json"