From 9bd340306930aa35c2f7a961136917af8114f344 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Tue, 25 Feb 2025 17:39:28 -0800 Subject: [PATCH] Try using apt-get --- .gitea/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 5e41b8f..da20dd2 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -15,7 +15,7 @@ jobs: # Cannot use `actions/setup-node` because that _itself_ requires `node` (it makes it available to user-code, # rather than to the system. Interesting discussion [here](https://gitea.com/gitea/act_runner/issues/538)) - name: Install node - run: apt install -y node + run: apt-get install -y node - name: Check out repository code uses: actions/checkout@v4