From 43312c46bd88315ab20299b96f77bff6d1732081 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 27 Feb 2024 16:00:09 +0000 Subject: [PATCH] trying to fix aquinas, yet again :( --- .gitea/workflows/msbuild.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/msbuild.yaml b/.gitea/workflows/msbuild.yaml index 92ad318..a212e98 100644 --- a/.gitea/workflows/msbuild.yaml +++ b/.gitea/workflows/msbuild.yaml @@ -13,7 +13,7 @@ jobs: run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts - name: Install Node - run: apt update && apt install -y ca-certificates curl gnupg && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && NODE_MAJOR=20 && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt update && apt install nodejs -y + run: apt update && apt install -y ca-certificates curl gnupg && mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && NODE_MAJOR=20 && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt update && apt install nodejs -y - name: Checkout Repository run: echo "Install repos..."