From 858baeb3e8c4396f9996304e6abd318e981005d1 Mon Sep 17 00:00:00 2001 From: EthanPisani Date: Tue, 18 Feb 2025 15:59:21 -0500 Subject: [PATCH] update apt to apt-get --- .gitea/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index aa998398..10e1cb20 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -17,13 +17,13 @@ jobs: steps: - name: Update APT and Install Curl run: | - apt update - apt install -y curl + apt-get update + apt-get install -y curl - name: Manually Install Node.js and Dependencies run: | curl -fsSL https://deb.nodesource.com/setup_20.x | bash - - apt install -y nodejs + apt-get install -y nodejs node -v npm -v npm install