From 8335a68b0f6ed0529d54597a65a28b8450613059 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Thu, 11 Jun 2026 16:51:49 -0400 Subject: [PATCH] debug: add set -ex and verbose wget to diagnose Stage step failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The step exits in 1s with no output — need to see which command fails and whether github.com is reachable from the runner. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 4314c31..5f5cea5 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -163,12 +163,13 @@ jobs: - name: Stage AppRun and linuxdeploy for AppImage bundler run: | - set -e + set -ex mkdir -p ~/.cache/tauri + ls tools/ cp tools/AppRun-x86_64 ~/.cache/tauri/AppRun-x86_64 chmod +x ~/.cache/tauri/AppRun-x86_64 - wget -q \ + wget \ "https://github.com/tauri-apps/binary-releases/releases/download/linuxdeploy/linuxdeploy-x86_64.AppImage" \ -O /tmp/linuxdeploy.AppImage