From 14687ae2bad69b3f7c807c8f5689b72cabd7216c Mon Sep 17 00:00:00 2001 From: Hammer Date: Fri, 30 Jan 2026 04:28:20 +0000 Subject: [PATCH] fix: install jq and system deps for Flutter CI action --- .gitea/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 80317f5..67cc95c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,6 +11,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Install system dependencies + run: apt-get update && apt-get install -y jq unzip xz-utils curl git + - name: Checkout uses: actions/checkout@v4 @@ -35,6 +38,9 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/main' steps: + - name: Install system dependencies + run: apt-get update && apt-get install -y jq unzip xz-utils curl git + - name: Checkout uses: actions/checkout@v4