From 610ec061ca1ad36d58057c8caa3b7df260205d21 Mon Sep 17 00:00:00 2001 From: Phil Skentelbery Date: Sun, 23 Nov 2025 20:51:04 -0700 Subject: [PATCH] ci: Add docker and git to workflow dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitea/workflows/build-container.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-container.yml b/.gitea/workflows/build-container.yml index 8261140..fe5af0d 100644 --- a/.gitea/workflows/build-container.yml +++ b/.gitea/workflows/build-container.yml @@ -15,14 +15,14 @@ jobs: build: runs-on: docker steps: - - name: Install Node.js + - name: Install dependencies run: | if command -v apk > /dev/null; then - apk add --no-cache nodejs npm + apk add --no-cache nodejs npm docker git elif command -v apt-get > /dev/null; then - apt-get update && apt-get install -y nodejs npm + apt-get update && apt-get install -y nodejs npm docker.io git elif command -v yum > /dev/null; then - yum install -y nodejs npm + yum install -y nodejs npm docker git fi - name: Checkout