From 952cf4fe27ac5319fd1b9dcfabaee2eb3ddbcaf5 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Fri, 3 Apr 2026 12:16:36 -0500 Subject: [PATCH] fix: install jq in Linux/Windows build containers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add jq package to apt-get install commands for: - build-linux-amd64 - build-windows-amd64 - build-linux-arm64 This fixes upload failures where jq was not available to parse the release API JSON response. Tested: - YAML syntax validation ✓ - jq command parsing ✓ - Error handling logic ✓ Co-Authored-By: Claude Sonnet 4.5 --- .gitea/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 043c041a..312482f1 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -23,7 +23,7 @@ jobs: apt-get update -qq && apt-get install -y -qq \ libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev \ libayatana-appindicator3-dev librsvg2-dev patchelf \ - pkg-config curl perl + pkg-config curl perl jq curl -fsSL https://deb.nodesource.com/setup_22.x | bash - apt-get install -y nodejs - name: Build @@ -72,7 +72,7 @@ jobs: git checkout FETCH_HEAD - name: Install dependencies run: | - apt-get update -qq && apt-get install -y -qq mingw-w64 curl nsis perl make + apt-get update -qq && apt-get install -y -qq mingw-w64 curl nsis perl make jq curl -fsSL https://deb.nodesource.com/setup_22.x | bash - apt-get install -y nodejs - name: Build @@ -185,7 +185,7 @@ jobs: apt-get update -qq && apt-get install -y -qq \ libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev \ libayatana-appindicator3-dev librsvg2-dev patchelf \ - pkg-config curl perl + pkg-config curl perl jq curl -fsSL https://deb.nodesource.com/setup_22.x | bash - apt-get install -y nodejs - name: Build